@@ -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,9 +16,9 @@ discard block |
||
| 16 | 16 | public function __invoke(array $options) |
| 17 | 17 | { |
| 18 | 18 | $client = $this->getClient($options); |
| 19 | - $database = (string) ($options['database'] ?? ''); |
|
| 20 | - $collection = (string) ($options['collection'] ?? ''); |
|
| 21 | - $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 19 | + $database = (string) ($options['database'] ?? ''); |
|
| 20 | + $collection = (string) ($options['collection'] ?? ''); |
|
| 21 | + $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 22 | 22 | $bubble = (boolean) ($options['bubble'] ?? true); |
| 23 | 23 | |
| 24 | 24 | return new MongoDBHandler( |