Skip to content

Commit e56d765

Browse files
author
Tim Helfensdörfer
committed
Updated package to monolog 2
1 parent 591553c commit e56d765

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"illuminate/database": ">= 5.7",
2323
"illuminate/encryption" : ">= 5.7",
2424
"illuminate/support": ">= 5.7",
25-
"monolog/monolog": ">= 1"
25+
"monolog/monolog": ">= 2"
2626
},
2727
"autoload": {
2828
"psr-4": {

src/DatabaseHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function setEncryptionKey(string $encryptionKey): DatabaseHandler
9292
/**
9393
* {@inheritdoc}
9494
*/
95-
protected function write(array $record)
95+
protected function write(array $record): void
9696
{
9797
if (is_object($record['context']) && ($record['context'] instanceof \Closure)) {
9898
$context = 'Closure';

0 commit comments

Comments
 (0)