Gush\Command\Issue\IssueMilestoneListCommand::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)
    {
        $styleHelper = $this->getHelper('gush_style');
        $styleHelper->title(sprintf('Issue milestones on %s/%s', $input->getOption('issue-org'), $input->getOption('issue-project')));
        $styleHelper->listing($this->getIssueTracker()->getMilestones());
    }
IssueMilestoneListCommand