App\Providers\SettingServiceProvider::register PHP Method

register() public method

Register any package services.
public register ( ) : void
return void
    public function register()
    {
        // Bind to the key 'Setting' to a closure instantiating to the SettingManager.
        $this->app->bind('Setting', function ($app) {
            return new SettingManager($app);
        });
    }
SettingServiceProvider