Passed
Push — master ( 44986b...ac4444 )
by Jaime
07:22
created
src/Clients/WSClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                     $conn->close();
33 33
                 });
34 34
 
35
-            }, function ($e) {
35
+            }, function($e) {
36 36
 
37 37
                 echo "Could not connect: {$e->getMessage()}\n";
38 38
             });
Please login to merge, or discard this patch.
src/RancherApi.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,9 @@
 block discarded – undo
49 49
 
50 50
         for ($i = 4; $i <= $argc; $i++) {
51 51
 
52
-            if (!array_key_exists($i, $argv)) break;
52
+            if (!array_key_exists($i, $argv)) {
53
+                break;
54
+            }
53 55
 
54 56
             $this->args['params'][] = $argv[$i];
55 57
         }
Please login to merge, or discard this patch.