Laravel\Envoy\Console\RunCommand::passToRemoteProcessor PHP Метод

passToRemoteProcessor() защищенный Метод

Run the given task and return the exit code.
protected passToRemoteProcessor ( Task $task ) : integer
$task Laravel\Envoy\Task
Результат integer
    protected function passToRemoteProcessor(Task $task)
    {
        return $this->getRemoteProcessor($task)->run($task, function ($type, $host, $line) {
            if (starts_with($line, 'Warning: Permanently added ')) {
                return;
            }
            $this->displayOutput($type, $host, $line);
        });
    }