Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
23 | private function getDockerClientCommands() |
||
24 | { |
||
25 | $commands = [ |
||
26 | new GenerateCommand() |
||
27 | ]; |
||
28 | |||
29 | $commands = $this->addDevelopmentCommands($commands); |
||
30 | |||
31 | foreach ($this->getCommandProvider() as $provider) { |
||
32 | $commands = $provider->provideCommands($commands); |
||
33 | } |
||
34 | |||
35 | return $commands; |
||
36 | } |
||
37 | |||
61 | } |