| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 13 | { |
||
| 14 | (new SymfonyStyle($input, $output)) |
||
| 15 | ->error( |
||
| 16 | \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') |
||
| 17 | ) |
||
| 18 | ; |
||
| 19 | |||
| 20 | return Command::SUCCESS; |
||
| 21 | } |
||
| 23 |