Stecman\Component\Symfony\Console\BashCompletion\CompletionHandler::getInput PHP Метод

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

Get an InputInterface representation of the completion context
public getInput ( ) : Symfony\Component\Console\Input\ArrayInput
Результат Symfony\Component\Console\Input\ArrayInput
    public function getInput()
    {
        // Filter the command line content to suit ArrayInput
        $words = $this->context->getWords();
        array_shift($words);
        $words = array_filter($words);
        return new ArrayInput($words);
    }