Completed
Push — master ( fce883...b7eaea )
by Westin
03:16
created
src/Handler/RedisHandlerFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace WShafer\PSR11MonoLog\Handler;
5 5
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
     public function __invoke(array $options)
17 17
     {
18 18
         $client  = $this->getClient($options);
19
-        $key     = (string)  ($options['key']     ?? '');
20
-        $level   = (int)     ($options['level']   ?? Logger::DEBUG);
19
+        $key     = (string) ($options['key']     ?? '');
20
+        $level   = (int) ($options['level']   ?? Logger::DEBUG);
21 21
         $bubble  = (boolean) ($options['bubble']  ?? true);
22
-        $capSize = (int)     ($options['capSize'] ?? 0);
22
+        $capSize = (int) ($options['capSize'] ?? 0);
23 23
 
24 24
         return new RedisHandler(
25 25
             $client,
Please login to merge, or discard this patch.