Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
35 | 3 | public function getDefaultCommands() |
|
36 | { |
||
37 | 3 | $commands = parent::getDefaultCommands(); |
|
38 | 3 | $commands[] = new \Edyan\Neuralyzer\Console\Commands\RunCommand(); |
|
39 | 3 | $commands[] = new \Edyan\Neuralyzer\Console\Commands\ConfigExampleCommand(); |
|
40 | 3 | $commands[] = new \Edyan\Neuralyzer\Console\Commands\ConfigGenerateCommand(); |
|
41 | 3 | $commands[] = new \Edyan\Neuralyzer\Console\Commands\ConfigValidateCommand(); |
|
42 | |||
43 | 3 | return $commands; |
|
44 | } |
||
46 |