PhpBrew\Command\SelfUpdateCommand::arguments PHP 메소드

arguments() 공개 메소드

public arguments ( $args )
    public function arguments($args)
    {
        $args->add('branch')->suggestions(function () {
            /* TODO: maybe fetch tags and remote branches from github? */
            return array('master', 'develop');
        });
    }