Test Setup Failed
Push — master ( b5b0f1...43ee18 )
by Josh
03:26
created
src/Console/ActivePackageCommands.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
         foreach ($commands as $command) {
102 102
             $class = new $command();
103 103
 
104
-            if (is_object($class) ) {
104
+            if (is_object($class)) {
105 105
                 if (method_exists($class, 'setConsole')) {
106 106
                     $class->setConsole($this->console);
107 107
                 }
Please login to merge, or discard this patch.
src/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@
 block discarded – undo
31 31
         return new InputDefinition(array(
32 32
             new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'),
33 33
 
34
-            new InputOption('--help',           '-h', InputOption::VALUE_NONE, 'Display this help message.'),
34
+            new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message.'),
35 35
             //new InputOption('--verbose',        '-v|vv|vvv', InputOption::VALUE_NONE, 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug.'),
36
-            new InputOption('--version',        '-V', InputOption::VALUE_NONE, 'Display the Blend version.'),
36
+            new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display the Blend version.'),
37 37
         ));
38 38
     }
39 39
 }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.