Completed
Pull Request — master (#167)
by Greg
01:51
created
src/Parser/CommandInfo.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Consolidation\AnnotatedCommand\Parser;
3 3
 
4 4
 use Symfony\Component\Console\Input\InputOption;
5
-use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParser;
6 5
 use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParserFactory;
7 6
 use Consolidation\AnnotatedCommand\AnnotationData;
8 7
 
Please login to merge, or discard this patch.
src/CommandProcessor.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,8 +200,7 @@
 block discarded – undo
200 200
         // result.
201 201
         if ($result instanceof ExitCodeInterface) {
202 202
             $status = $result->getExitCode();
203
-        }
204
-        else {
203
+        } else {
205 204
             $status = $statusCodeDispatcher->determineStatusCode($result);
206 205
             if (isset($status) && ($status != 0)) {
207 206
                 return $status;
Please login to merge, or discard this patch.