Passed
Push — test ( 63bffd...9ffc6c )
by Tom
03:04
created
src/Cli/Args/OptionMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             return false;
55 55
         }
56 56
 
57
-        $buffer = substr($arg, 1 === $optLen ? 1 :2);
57
+        $buffer = substr($arg, 1 === $optLen ? 1 : 2);
58 58
 
59 59
         if ($equals && false !== $posEquals = strpos($buffer, '=')) {
60 60
             if (0 === $posEquals) {
Please login to merge, or discard this patch.
src/Cli/Args/OptionIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
      */
117 117
     public function seekOption($option)
118 118
     {
119
-        while(
119
+        while (
120 120
             ($this->forwardToOption() || $this->valid())
121 121
             && !$this->currentMatchesOption($option)
122 122
         ) {
Please login to merge, or discard this patch.