Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
12 | final class CliController implements Controller |
||
13 | { |
||
14 | /** @var Status */ |
||
15 | private $status; |
||
16 | |||
17 | public function __construct(Status $status) |
||
18 | { |
||
19 | $this->status = $status; |
||
20 | } |
||
21 | |||
22 | /** {@inheritDoc} */ |
||
23 | public function configure(Command $command) |
||
27 | } |
||
28 | |||
29 | /** {@inheritDoc} */ |
||
30 | public function execute(InputInterface $input, OutputInterface $output) |
||
38 |