Passed
Branch test (033a34)
by Tom
02:27
created
src/Cli/Args.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             throw new \InvalidArgumentException('There must be at least one argument (the command name)');
35 35
         }
36 36
 
37
-        $command = (string) array_shift($argv);
37
+        $command = (string)array_shift($argv);
38 38
         $args = new self($argv);
39 39
         $args->utility = $command;
40 40
 
Please login to merge, or discard this patch.
src/Lib.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,9 +195,9 @@
 block discarded – undo
195 195
     {
196 196
         // TODO: a variant with PHP stream wrapper prefix support
197 197
 
198
-        $count = strspn($path, '/', 0, 3) % 2;
198
+        $count = strspn($path, '/', 0, 3)%2;
199 199
 
200
-        return (bool) $count;
200
+        return (bool)$count;
201 201
     }
202 202
 
203 203
     /**
Please login to merge, or discard this patch.