Darsain\Console\ConsoleServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        $this->package('darsain/laravel-console');
        $src_path = __DIR__ . '/../../';
        // Routes
        require $src_path . 'routes.php';
        // Attach Console events
        Console::attach();
    }
ConsoleServiceProvider