app->singleton(ConcurrencyManager::class, function ($app) { return new ConcurrencyManager($app); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ ConcurrencyManager::class, ]; } }