| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | final class Build extends Compile |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function run(InputInterface $input, OutputInterface $output) |
||
| 33 | { |
||
| 34 | $io = new SymfonyStyle($input, $output); |
||
| 35 | |||
| 36 | @trigger_error( |
||
| 37 | $deprecationMessage = 'The command "build" is deprecated. Use "compile" instead.', |
||
| 38 | E_USER_DEPRECATED |
||
| 39 | ); |
||
| 40 | |||
| 41 | $io->warning($deprecationMessage); |
||
| 42 | |||
| 43 | return parent::run($input, $output); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritdoc} |
||
| 48 | */ |
||
| 49 | protected function configure(): void |
||
| 55 | } |
||
| 56 | } |
||
| 57 |