Completed
Push — master ( 1c29f2...390afb )
by Olivier
04:32
created
Manager/AbstractManager.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,9 @@
 block discarded – undo
48 48
                     $difference[$key] = $value;
49 49
                 } else {
50 50
                     $new_diff = $this->array_diff_assoc_recursive($value, $array2[$key]);
51
-                    if (!empty($new_diff))
52
-                        $difference[$key] = $new_diff;
51
+                    if (!empty($new_diff)) {
52
+                                            $difference[$key] = $new_diff;
53
+                    }
53 54
                 }
54 55
             } else if (!array_key_exists($key, $array2) || $array2[$key] !== $value) {
55 56
                 $difference[$key] = $value;
Please login to merge, or discard this patch.
Command/VhostDefineCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
      */
137 137
     private function getIO(InputInterface $input, OutputInterface $output)
138 138
     {
139
-        if(class_exists('Symfony\Component\Console\Style\SymfonyStyle')) {
139
+        if (class_exists('Symfony\Component\Console\Style\SymfonyStyle')) {
140 140
             return new \Symfony\Component\Console\Style\SymfonyStyle($input, $output);
141 141
         }
142 142
 
Please login to merge, or discard this patch.