Gush\Command\Issue\LabelIssuesCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('issue:label:assign')->setDescription('Labels issues/pull requests')->addOption('new', null, InputOption::VALUE_NONE, 'Get only new issues/pull requests')->addOption('issues', null, InputOption::VALUE_NONE, 'Get issues')->addOption('pull-requests', null, InputOption::VALUE_NONE, 'Get pull requests')->setHelp(<<<EOF
The <info>%command.name%</info> command labels issue or pull requests for either the current or the given organization
and repo:

    <info>\$ gush %command.name%</info>

EOF
);
    }