Collective\Remote\Console\TailCommand::fire PHP Метод

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

Execute the console command.
public fire ( ) : void
Результат void
    public function fire()
    {
        $path = $this->getPath($this->argument('connection'));
        if ($path) {
            $this->tailLogFile($path, $this->argument('connection'));
        } else {
            $this->error('Could not determine path to log file.');
        }
    }