Andrew13\Cabinet\CabinetServiceProvider::register PHP Method

register() public method

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