StackFormation\Command\Blueprint\AbstractBlueprintCommand::execute PHP Метод

execute() закрытый защищенный Метод

final protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected final function execute(InputInterface $input, OutputInterface $output)
    {
        $blueprintName = $input->getArgument('blueprint');
        $blueprint = $this->blueprintFactory->getBlueprint($blueprintName);
        return $this->executeWithBlueprint($blueprint, $input, $output);
    }