App\Providers\SettingsServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        $this->app->singleton('xe.settings', function ($app) {
            $handler = $app['xe.interception']->proxy(SettingsHandler::class, 'XeSettings');
            $handler = new $handler($app['xe.register'], $app['router'], $app['xe.config'], $app['Illuminate\\Contracts\\Auth\\Access\\Gate']);
            return $handler;
        });
    }