Skip to content

Commit 8d2722c

Browse files
committed
Removed expected type for ishandling and handle
1 parent 90e26bc commit 8d2722c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Logger/Handler/Sentry.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct(
2727
/**
2828
* @inheritDoc
2929
*/
30-
public function isHandling(array $record): bool
30+
public function isHandling($record): bool
3131
{
3232
$config = $this->sentryHelper->collectModuleConfig();
3333
$this->setLevel($config['log_level']);
@@ -38,7 +38,7 @@ public function isHandling(array $record): bool
3838
/**
3939
* @inheritDoc
4040
*/
41-
public function handle(array $record): bool
41+
public function handle($record): bool
4242
{
4343
if (!$this->isHandling($record)) {
4444
return false;

0 commit comments

Comments
 (0)