Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
11 | final class BuildDocCommand extends Command |
||
12 | { |
||
13 | /** |
||
14 | * @var EnvironmentState |
||
15 | */ |
||
16 | private $environmentState; |
||
17 | |||
18 | public function __construct(EnvironmentState $environmentState) |
||
22 | } |
||
23 | |||
24 | public function isHidden() |
||
25 | { |
||
26 | return true; |
||
27 | } |
||
28 | |||
29 | protected function configure(): void |
||
32 | } |
||
33 | |||
34 | protected function execute(InputInterface $input, OutputInterface $output) |
||
45 |