Passed
Push — main ( 806957...508c29 )
by PRATIK
10:32 queued 07:47
created
src/Provider/AnnouncementServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     protected function registerRoutes()
90 90
     {
91
-        Route::group($this->routeConfiguration(), function () {
91
+        Route::group($this->routeConfiguration(), function() {
92 92
             $this->loadRoutesFrom(__DIR__.'/../../routes/web.php');
93 93
         });
94 94
     }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     {
103 103
         return [
104 104
             'prefix' => config('announcement.prefix', 'admin'),
105
-            'middleware' => config('announcement.middleware', ['web', 'auth']),
105
+            'middleware' => config('announcement.middleware', [ 'web', 'auth' ]),
106 106
         ];
107 107
     }
108 108
 
Please login to merge, or discard this patch.
src/Notifications/SlackAnnouncementNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     public function via($notifiable)
34 34
     {
35
-        return ['slack'];
35
+        return [ 'slack' ];
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.