AllanTatter\React\ReactServiceProvider::register PHP Method

register() public method

Register the application services.
public register ( ) : void
return void
    public function register()
    {
        $this->mergeConfigFrom(__DIR__ . '/config/config.php', 'react');
        $this->app['react'] = $this->app->share(function ($app) {
            return $app->make('AllanTatter\\React\\React');
        });
    }
ReactServiceProvider