Skip to content

Commit

Permalink
feature: downgrade php to 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
krissss committed Sep 18, 2022
1 parent 1d72bb7 commit f802e5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"description": "Webman plugin webman-tech/log-reader",
"require": {
"php": ">=7.4",
"php": ">=7.2",
"kriss/log-reader": "^1.3"
},
"config": {
Expand Down
5 changes: 4 additions & 1 deletion src/LogReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@

class LogReader
{
protected static ?PhpLogReader $_instance = null;
/**
* @var null|PhpLogReader
*/
protected static $_instance = null;

public static function instance(): PhpLogReader
{
Expand Down

0 comments on commit f802e5f

Please sign in to comment.