Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 1 | public function addCommands(Application $application) |
|
19 | { |
||
20 | 1 | $default = new DefaultCommand(null, true); |
|
21 | 1 | $application->add($default); |
|
22 | 1 | $application->add(new ConfigurationBuild(null, true)); |
|
23 | 1 | $application->add(new ConfigurationGet(null, true)); |
|
24 | 1 | $application->add(new ConfigurationSet(null, true)); |
|
25 | 1 | $application->add(new ConfigurationListKeys(null, true)); |
|
26 | 1 | $application->add(new ContextList(null, true)); |
|
27 | 1 | $application->add(new CreateTable(null, true)); |
|
28 | 1 | $application->setDefaultCommand($default->getName()); |
|
29 | 1 | } |
|
30 | |||
32 |