StackFormation\Command\Stack\TreeCommand::execute PHP Метод

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

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 function execute(InputInterface $input, OutputInterface $output)
    {
        $nameFilter = $input->getOption('nameFilter');
        $statusFilter = $input->getOption('statusFilter');
        $stacks = $this->getStackFactory()->getStacksFromApi(false, $nameFilter, $statusFilter);
        $dataTree = $this->prepareTree($stacks);
        $dataTree = $this->flatternTree($dataTree);
        $this->renderNode($dataTree);
    }