Collective\Remote\RemoteServiceProvider::registerCommands PHP Méthode

registerCommands() protected méthode

Register the commands.
protected registerCommands ( ) : void
Résultat void
    protected function registerCommands()
    {
        foreach (array_keys($this->commands) as $command) {
            $method = "register{$command}Command";
            call_user_func_array([$this, $method], []);
        }
        $this->commands(array_values($this->commands));
    }