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

Do the actual completion, returning an array of strings to provide to the parent shell's completion system
public runCompletion ( ) : string[]
Результат string[]
Пример #1
0
 /**
  * Run the completion handler and return a filtered list of results
  *
  * @deprecated - This will be removed in 1.0.0 in favour of CompletionCommand::configureCompletion
  *
  * @return string[]
  */
 protected function runCompletion()
 {
     $this->configureCompletion($this->handler);
     return $this->handler->runCompletion();
 }