| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class CommandLoader |
||
| 16 | { |
||
| 17 | public const COMMAND_TAG = 'console.command'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Loads tagged command services into CLI application |
||
| 21 | * |
||
| 22 | * @param Application $cliApp |
||
| 23 | * @param ContainerBuilder $container |
||
| 24 | */ |
||
| 25 | 1 | public function load(Application $cliApp, ContainerBuilder $container): void |
|
| 36 |