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