@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace WShafer\PSR11MonoLog\Handler; |
5 | 5 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function __invoke(array $options) |
13 | 13 | { |
14 | - $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
14 | + $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
15 | 15 | $bubble = (boolean) ($options['bubble'] ?? true); |
16 | 16 | |
17 | 17 | return new TestHandler( |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace WShafer\PSR11MonoLog\Handler; |
5 | 5 | |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | public function __invoke(array $options) |
17 | 17 | { |
18 | 18 | $client = $this->getService($options['client'] ?? null); |
19 | - $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
19 | + $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
20 | 20 | $bubble = (boolean) ($options['bubble'] ?? true); |
21 | 21 | |
22 | 22 | return new DoctrineCouchDBHandler( |