Collective\Remote\RemoteServiceProvider::registerTailCommand PHP Method

registerTailCommand() protected method

Register the command.
protected registerTailCommand ( ) : void
return void
    protected function registerTailCommand()
    {
        $this->app->singleton('command.tail', function ($app) {
            return new TailCommand();
        });
    }