Skip to content

Commit

Permalink
Merge branch '4.x-dev' into 5.x-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Mar 16, 2023
2 parents 429a0a5 + b08bad9 commit 24faefc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/matomo-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Action for running tests
# This file has been automatically created.
# To recreate it you can run this command
# ./console generate:test-action --plugin="LogViewer" --php-versions="7.2,8.1"
# ./console generate:test-action --plugin="LogViewer" --php-versions="7.2,8.2" --schedule-cron="5 3 * * 6"

name: Plugin LogViewer Tests

Expand All @@ -12,6 +12,8 @@ on:
branches:
- '**.x-dev'
workflow_dispatch:
schedule:
- cron: "5 3 * * 6"

permissions:
actions: read
Expand All @@ -35,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.2', '8.1' ]
php: [ '7.2', '8.2' ]
target: ['minimum_required_matomo', 'maximum_supported_matomo']
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions Log/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

class Query
{
protected $query;

public function __construct($query)
{
$this->query = $query;
Expand Down
1 change: 1 addition & 0 deletions Log/Reader/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Database implements Reader
private $lines = array();
private $table;
private $lowestIdLogMessageFromPreviousRun;
private $db;

public function __construct()
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Matomo LogViewer Plugin

[![Build Status](https://travis-ci.com/matomo-org/plugin-LogViewer.svg?branch=4.x-dev)](https://travis-ci.com/matomo-org/plugin-LogViewer)
[![Build Status](https://github.com/matomo-org/plugin-LogViewer/actions/workflows/matomo-tests.yml/badge.svg?branch=4.x-dev)](https://github.com/matomo-org/plugin-LogViewer/actions/workflows/matomo-tests.yml)

## Description

Expand Down

0 comments on commit 24faefc

Please sign in to comment.