Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function addCommands(Application $application) |
|
18 | { |
||
19 | 1 | $application->add(new DefaultCommand()); |
|
20 | 1 | $application->add(new ConfigurationBuild()); |
|
21 | 1 | $application->add(new ConfigurationGet()); |
|
22 | 1 | $application->add(new ConfigurationSet()); |
|
23 | 1 | $application->add(new ConfigurationList()); |
|
24 | 1 | $application->add(new ContextList()); |
|
25 | 1 | $application->add(new CreateTable()); |
|
26 | 1 | $application->setDefaultCommand(DefaultCommand::COMMAND); |
|
27 | 1 | } |
|
28 | |||
30 |