StackFormation\Command\Stack\AbstractStackCommand::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)
    {
        $stackName = $input->getArgument('stack');
        Validator::validateStackname($stackName);
        $stack = $this->getStackFactory()->getStack($stackName);
        return $this->executeWithStack($stack, $input, $output);
    }