App\Providers\CounterServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        $this->app->singleton(['xe.counter' => Factory::class], function ($app) {
            return new Factory($app['xe.interception']);
        });
    }
CounterServiceProvider