Baum\Providers\BaumServiceProvider::registerCommands PHP Метод

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

Register the commands.
public registerCommands ( ) : void
Результат void
    public function registerCommands()
    {
        $this->registerBaumCommand();
        $this->registerInstallCommand();
        // Resolve the commands with Artisan by attaching the event listener to Artisan's
        // startup. This allows us to use the commands from our terminal.
        $this->commands('command.baum', 'command.baum.install');
    }