PhpBrew\Command\SelfUpdateCommand::arguments PHP Method

arguments() public method

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');
        });
    }