Skip to content

Commit 025d7d7

Browse files
Merge pull request #37 from magento-commerce/MCLOUD-12855
monolog compatability fix
2 parents c93b6b3 + b27366e commit 025d7d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Model/Logger/Handler/Debug.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
class Debug extends \Magento\Framework\Logger\Handler\Debug
1414
{
1515
/**
16-
* @param array $record
16+
* @param \Monolog\LogRecord | array $record
1717
* @return mixed
1818
*/
19-
public function isHandling(array $record): bool
19+
public function isHandling(\Monolog\LogRecord|array $record): bool
2020
{
2121
return parent::isHandling($record);
2222
}

0 commit comments

Comments
 (0)