@@ -101,7 +101,7 @@ |
||
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 | } |
@@ -31,9 +31,9 @@ |
||
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 |