Total Complexity | 7 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Application extends SymfonyApplication |
||
15 | { |
||
16 | public const NAME = 'Monorepo'; |
||
17 | public const VERSION = '1.0.0'; |
||
18 | |||
19 | /** |
||
20 | * @var \Pimple\Container |
||
21 | */ |
||
22 | protected $container; |
||
23 | |||
24 | /** |
||
25 | * @param \Pimple\Container $container |
||
26 | */ |
||
27 | public function __construct(Container $container) |
||
28 | { |
||
29 | parent::__construct(static::NAME, static::VERSION); |
||
30 | |||
31 | $this->container = $container; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return \Symfony\Component\Console\Command\Command[] |
||
36 | */ |
||
37 | protected function getDefaultCommands(): array |
||
60 | } |
||
61 | } |
||
62 |