Cake\Console\ShellDispatcher::shiftArgs PHP Method

shiftArgs() public method

Removes first argument and shifts other arguments up
public shiftArgs ( ) : mixed
return mixed Null if there are no arguments otherwise the shifted argument
    public function shiftArgs()
    {
        return array_shift($this->args);
    }