We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 607143c commit b27366eCopy full SHA for b27366e
Model/Logger/Handler/Debug.php
@@ -7,18 +7,16 @@
7
8
namespace Magento\CloudComponents\Model\Logger\Handler;
9
10
-use Monolog\LogRecord;
11
-
12
/**
13
* Debug handler which doesn't require debug mode enabled
14
*/
15
class Debug extends \Magento\Framework\Logger\Handler\Debug
16
{
17
18
- * @param array $record
+ * @param \Monolog\LogRecord | array $record
19
* @return mixed
20
21
- public function isHandling(LogRecord $record): bool
+ public function isHandling(\Monolog\LogRecord|array $record): bool
22
23
return parent::isHandling($record);
24
}
0 commit comments