Completed
Push — master ( 45114c...2c99b9 )
by
unknown
14s queued 13s
created
src/LaravelNotificationRateLimitServiceProvider.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
      */
25 25
     public function register()
26 26
     {
27
-        $this->app->singleton(ChannelManager::class, function ($app) {
27
+        $this->app->singleton(ChannelManager::class, function($app) {
28 28
             return new RateLimitChannelManager($app);
29 29
         });
30 30
 
Please login to merge, or discard this patch.
src/RateLimitedNotification.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,15 +97,15 @@
 block discarded – undo
97 97
             $key = $notifiables->rateLimitNotifiableKey();
98 98
         }
99 99
 
100
-        if (! $key && method_exists($notifiables, 'getKey')) {
100
+        if (!$key && method_exists($notifiables, 'getKey')) {
101 101
             $key = $notifiables->getKey();
102 102
         }
103 103
 
104
-        if (! $key && property_exists($notifiables, 'id')) {
104
+        if (!$key && property_exists($notifiables, 'id')) {
105 105
             $key = $notifiables->id;
106 106
         }
107 107
 
108
-        if (! $key) {
108
+        if (!$key) {
109 109
             $key = md5(json_encode($notifiables));
110 110
         }
111 111
 
Please login to merge, or discard this patch.