Neos\Flow\Cli\Request::getExceedingArguments PHP Метод

getExceedingArguments() публичный Метод

For a command method with the signature ($argument1, $argument2) and for the command line ./flow acme:foo --argument1 Foo --argument2 Bar baz quux this method would return array(0 => 'baz', 1 => 'quux')
public getExceedingArguments ( ) : array
Результат array Numeric array of exceeding argument values
    public function getExceedingArguments()
    {
        return $this->exceedingArguments;
    }