@@ -28,7 +28,7 @@ |
||
28 | 28 | public function __invoke(array $record): array |
29 | 29 | { |
30 | 30 | foreach ($this->keys as $key) { |
31 | - if (! array_key_exists($key, $record)) { |
|
31 | + if (!array_key_exists($key, $record)) { |
|
32 | 32 | continue; |
33 | 33 | } |
34 | 34 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | if (array_key_exists('exception', $record['context']) && $record['context']['exception'] instanceof Throwable) { |
31 | 31 | $record['extra']['trace'] = $record['context']['exception']->getTrace(); |
32 | 32 | foreach ($record['extra']['trace'] as $index => $line) { |
33 | - if (! array_key_exists('args', $line)) { |
|
33 | + if (!array_key_exists('args', $line)) { |
|
34 | 34 | continue; |
35 | 35 | } |
36 | 36 | |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
41 | - if ($this->always && ! array_key_exists('trace', $record['extra'])) { |
|
41 | + if ($this->always && !array_key_exists('trace', $record['extra'])) { |
|
42 | 42 | $record['extra']['trace'] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); |
43 | 43 | } |
44 | 44 |