@@ -18,31 +18,31 @@ |
||
18 | 18 | __DIR__ . '/../../config/services.php', 'services' |
19 | 19 | ); |
20 | 20 | |
21 | - $this->app->singleton(SentryNotifier::class, function ($app) { |
|
21 | + $this->app->singleton(SentryNotifier::class, function($app) { |
|
22 | 22 | return new SentryNotifier( |
23 | 23 | app(SentryServiceInterface::class), |
24 | 24 | ); |
25 | 25 | }); |
26 | 26 | |
27 | - $this->app->singleton(MessageFormatterFactory::class, function ($app) { |
|
27 | + $this->app->singleton(MessageFormatterFactory::class, function($app) { |
|
28 | 28 | return new MessageFormatterFactory( |
29 | 29 | $app['config']['services']['laravel-sentry-notifications']['service'] |
30 | 30 | ); |
31 | 31 | }); |
32 | 32 | |
33 | - $this->app->singleton(MessengerClientFactory::class, function ($app) { |
|
33 | + $this->app->singleton(MessengerClientFactory::class, function($app) { |
|
34 | 34 | return new MessengerClientFactory( |
35 | 35 | $app['config']['services']['laravel-sentry-notifications']['service'] |
36 | 36 | ); |
37 | 37 | }); |
38 | 38 | |
39 | - $this->app->singleton(NotificationEntityFactory::class, function ($app) { |
|
39 | + $this->app->singleton(NotificationEntityFactory::class, function($app) { |
|
40 | 40 | return new NotificationEntityFactory( |
41 | 41 | $app['config']['services']['laravel-sentry-notifications']['service'] |
42 | 42 | ); |
43 | 43 | }); |
44 | 44 | |
45 | - $this->app->singleton(NotificationFactory::class, function ($app) { |
|
45 | + $this->app->singleton(NotificationFactory::class, function($app) { |
|
46 | 46 | return new NotificationFactory( |
47 | 47 | $app['config']['services']['laravel-sentry-notifications']['service'] |
48 | 48 | ); |