Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class BuildCommand extends Command |
||
13 | { |
||
14 | /** |
||
15 | * The assetic service |
||
16 | */ |
||
17 | private Service $assetic; |
||
18 | |||
19 | public function __construct(Service $assetic) |
||
20 | { |
||
21 | parent::__construct('build'); |
||
22 | $this->assetic = $assetic; |
||
23 | $this->setDescription('Build all assets.'); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Executes the current command. |
||
28 | */ |
||
29 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
36 | } |
||
37 | } |
||
38 |