App\Services\Setting\SettingServiceProvider::register PHP Method

register() public method

Register the application services.
public register ( ) : void
return void
    public function register()
    {
        $this->app->singleton('setting', function () {
            return new Setting();
        });
    }
SettingServiceProvider