| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 15 | { |
||
| 16 | (new SymfonyStyle($input, $output)) |
||
| 17 | ->error( |
||
| 18 | sprintf("To run \"%s\" you need the \"%s\" which is currently not installed.\n\nTry running \"composer require %s\".", static::$defaultName, 'MakerBundle', 'symfony/maker-bundle --dev') |
||
| 19 | ); |
||
| 20 | |||
| 21 | return Command::SUCCESS; |
||
| 22 | } |
||
| 24 |