Andrew13\Cabinet\CabinetServiceProvider::register PHP Méthode

register() public méthode

Register the service provider.
public register ( ) : void
Résultat void
    public function register()
    {
        $this->app->bind('cabinet', function ($app) {
            return new Cabinet($app);
        });
        $this->registerCommands();
    }