@@ -23,7 +23,7 @@ |
||
23 | 23 | public function __invoke(LogRecord $record): LogRecord |
24 | 24 | { |
25 | 25 | foreach ($this->keys as $key) { |
26 | - if (! array_key_exists($key, $record->toArray())) { |
|
26 | + if (!array_key_exists($key, $record->toArray())) { |
|
27 | 27 | continue; |
28 | 28 | } |
29 | 29 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | if (array_key_exists('exception', $record->context) && $record->context['exception'] instanceof Throwable) { |
26 | 26 | $record->extra['trace'] = $record->context['exception']->getTrace(); |
27 | 27 | foreach ($record->extra['trace'] as $index => $line) { |
28 | - if (! array_key_exists('args', $line)) { |
|
28 | + if (!array_key_exists('args', $line)) { |
|
29 | 29 | continue; |
30 | 30 | } |
31 | 31 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | } |
34 | 34 | } |
35 | 35 | |
36 | - if ($this->always && ! array_key_exists('trace', $record->extra)) { |
|
36 | + if ($this->always && !array_key_exists('trace', $record->extra)) { |
|
37 | 37 | $record->extra['trace'] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); |
38 | 38 | } |
39 | 39 |