Passed
Push — master ( 244bf6...cc00b6 )
by Timm
01:59
created
src/Stefaminator/Cli/HelpRunner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
         $runner = $cmd->getRunner();
173 173
 
174
-        if($runner === null) {
174
+        if ($runner === null) {
175 175
             return;
176 176
         }
177 177
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $runner->help();
180 180
         $help = ob_get_clean();
181 181
 
182
-        if(empty($help)) {
182
+        if (empty($help)) {
183 183
             return;
184 184
         }
185 185
 
Please login to merge, or discard this patch.
examples/cli-app-options.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
                                 ' This is the custom help for ' . Color::green('cli-app-options') . ' command. ' . self::EOL .
84 84
                                 ' Please use the --name option to pass your name to this command and you will be greeted personally. ' . self::EOL .
85 85
                                 ' ' . self::EOL .
86
-                                ' ' . Color::green('php cli-app-options.php --name="great Stefaminator"') . self::EOL ;
86
+                                ' ' . Color::green('php cli-app-options.php --name="great Stefaminator"') . self::EOL;
87 87
 
88 88
 
89 89
                         }
Please login to merge, or discard this patch.