Passed
Pull Request — master (#2)
by Stan
06:16
created
src/Providers/TelegramServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
             ->needs(MessageFormatterInterface::class)
25 25
             ->give(TelegramMessageFormatter::class);
26 26
 
27
-        $this->app->bind(NotifableTelegramChannel::class, function (Application $app) {
27
+        $this->app->bind(NotifableTelegramChannel::class, function(Application $app) {
28 28
             if (empty($app['config']['services']['laravel-sentry-notifications']['telegram']['chat_id'])) {
29 29
                 throw new SentryNotifierException('Empty telegram Chat ID');
30 30
             }
Please login to merge, or discard this patch.
src/Providers/SentryServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function register(): void
12 12
     {
13
-        $this->app->singleton(SentryServiceInterface::class, function ($app) {
13
+        $this->app->singleton(SentryServiceInterface::class, function($app) {
14 14
             return new SentryService(
15 15
                 $app['sentry'],
16 16
                 $app['config']['services']['laravel-sentry-notifications']['issues_url'],
Please login to merge, or discard this patch.