Skip to content

Commit

Permalink
Merge pull request #19 from WyriHaximus/dependabot/composer/monolog/m…
Browse files Browse the repository at this point in the history
…onolog-2.0.0

Bump monolog/monolog from 1.25.1 to 2.0.0
  • Loading branch information
WyriHaximus committed Sep 16, 2019
2 parents 76e5456 + 3d9142d commit a371e7d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 21 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -11,7 +11,7 @@
"require": {
"php": "^7.2",
"igorw/get-in": "^1.0",
"monolog/monolog": "^1.25"
"monolog/monolog": "^1.25 || ^2.0"
},
"require-dev": {
"wyrihaximus/cs-fixer-config": "^1.0",
Expand Down
41 changes: 22 additions & 19 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion tests/FunctionalTest.php
Expand Up @@ -141,9 +141,11 @@ public function __construct(callable $handler)
$this->handler = $handler;
}

public function handle(array $record): void
public function handle(array $record): bool
{
($this->handler)($record);

return true;
}
});

Expand Down

0 comments on commit a371e7d

Please sign in to comment.