Skip to content

Commit 4c94101

Browse files
committed
-
1 parent 9325ec4 commit 4c94101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(ConsoleOutput $output)
6262
}
6363

6464
/**
65-
* @param \Stringable|string $message
65+
* @param Stringable|string $message
6666
*/
6767
public function log($level, $message, array $context = []): void
6868
{
@@ -73,7 +73,7 @@ public function log($level, $message, array $context = []): void
7373
if ($this->output->getVerbosity() >= ConsoleOutput::VERBOSITY_DEBUG && [] !== $context) {
7474
// Filter out special keys that are already handled
7575
$displayContext = array_filter($context, function ($key) {
76-
return !\in_array($key, ['exception', 'error', 'object'], true);
76+
return !in_array($key, ['exception', 'error', 'object'], true);
7777
}, \ARRAY_FILTER_USE_KEY);
7878

7979
if ([] !== $displayContext) {

0 commit comments

Comments
 (0)