Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class Shell extends Command |
||
14 | { |
||
15 | protected ContainerInterface $container; |
||
16 | |||
17 | protected Psysh $shell; |
||
18 | |||
19 | public function __construct(ContainerInterface $container, Psysh $shell) |
||
20 | { |
||
21 | parent::__construct(); |
||
22 | $this->container = $container; |
||
23 | $this->shell = $shell; |
||
24 | } |
||
25 | |||
26 | protected function configure(): void |
||
31 | } |
||
32 | |||
33 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
42 |