Passed
Push — master ( 0ee9e5...a605f2 )
by Raffael
02:54
created
src/Adapter/Syslog.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * Balloon
@@ -51,17 +51,17 @@  discard block
 block discarded – undo
51 51
         foreach ($config as $option => $value) {
52 52
             switch ($option) {
53 53
                 case 'ident':
54
-                    $this->ident = (string) $value;
54
+                    $this->ident = (string)$value;
55 55
                     unset($config[$option]);
56 56
 
57 57
                 break;
58 58
                 case 'option':
59
-                    $this->option = (int) (string) $value;
59
+                    $this->option = (int)(string)$value;
60 60
                     unset($config[$option]);
61 61
 
62 62
                 break;
63 63
                 case 'facility':
64
-                    $this->facility = (int) (string) $value;
64
+                    $this->facility = (int)(string)$value;
65 65
                     unset($config[$option]);
66 66
 
67 67
                 break;
Please login to merge, or discard this patch.