| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | } |
||
| 57 |