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 c93b6b3 commit c1d0f93Copy full SHA for c1d0f93
Model/Logger/Handler/Debug.php
@@ -7,6 +7,8 @@
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
*/
@@ -16,7 +18,7 @@ class Debug extends \Magento\Framework\Logger\Handler\Debug
16
18
* @param array $record
17
19
* @return mixed
20
- public function isHandling(array $record): bool
21
+ public function isHandling(LogRecord $record): bool
22
{
23
return parent::isHandling($record);
24
}
0 commit comments