use Symfony\Component\Console\Input\InputInterface;
9
use Symfony\Component\Console\Output\OutputInterface;
10
use Symfony\Component\Console\Style\SymfonyStyle;
11
12
class StubCommand extends Command
13
{
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')