MercurySeries\Flashy\FlashyServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        $this->app->bind(\MercurySeries\Flashy\SessionStore::class, \MercurySeries\Flashy\LaravelSessionStore::class);
        $this->app->singleton('flashy', function () {
            return $this->app->make(\MercurySeries\Flashy\FlashyNotifier::class);
        });
    }
FlashyServiceProvider