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