App\Providers\CounterServiceProvider::register PHP Méthode

register() public méthode

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