StackFormation\Command\Blueprint\ValidateCommand::executeWithBlueprint PHP Метод

executeWithBlueprint() защищенный Метод

protected executeWithBlueprint ( Blueprint $blueprint, Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$blueprint StackFormation\Blueprint
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function executeWithBlueprint(Blueprint $blueprint, InputInterface $input, OutputInterface $output)
    {
        $blueprintAction = new BlueprintAction($blueprint, $this->profileManager, $output);
        $blueprintAction->validateTemplate();
        // will throw an exception if there's a problem
        $formatter = new FormatterHelper();
        $formattedBlock = $formatter->formatBlock(['No validation errors found.'], 'info', true);
        $output->writeln("\n\n{$formattedBlock}\n\n");
    }