Completed
Push — master ( db7eba...ff0f02 )
by
unknown
17s queued 14s
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
@@ -92,15 +92,15 @@
 block discarded – undo
92 92
             $key = $notifiable->rateLimitNotifiableKey();
93 93
         }
94 94
 
95
-        if (! $key && method_exists($notifiable, 'getKey')) {
95
+        if (!$key && method_exists($notifiable, 'getKey')) {
96 96
             $key = $notifiable->getKey();
97 97
         }
98 98
 
99
-        if (! $key && property_exists($notifiable, 'id')) {
99
+        if (!$key && property_exists($notifiable, 'id')) {
100 100
             $key = $notifiable->id;
101 101
         }
102 102
 
103
-        if (! $key) {
103
+        if (!$key) {
104 104
             $key = md5(json_encode($notifiable));
105 105
         }
106 106
 
Please login to merge, or discard this patch.
src/RateLimitChannelManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         // If this notification is going to be queued, we do not check for rate limiting
17 17
         // until the notification is actually picked up for sending in the queue via sendNow().
18
-        if ($notification instanceof ShouldRateLimit && ! $notification instanceof ShouldQueue) {
18
+        if ($notification instanceof ShouldRateLimit && !$notification instanceof ShouldQueue) {
19 19
             $this->sendWithRateLimitCheck($notifiables, $notification, 'send');
20 20
         } else {
21 21
             parent::send($notifiables, $notification);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                 report($e);
91 91
             }
92 92
 
93
-            if (! $sending_permitted) {
93
+            if (!$sending_permitted) {
94 94
                 continue;
95 95
             }
96 96
 
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
      *
104 104
      * @see \Illuminate\Notifications\NotificationSender::formatNotifiables
105 105
      */
106
-    protected function formatNotifiables(mixed $notifiables): ModelCollection|Collection|array
106
+    protected function formatNotifiables(mixed $notifiables): ModelCollection | Collection | array
107 107
     {
108
-        if (! $notifiables instanceof Collection && ! is_array($notifiables)) {
108
+        if (!$notifiables instanceof Collection && !is_array($notifiables)) {
109 109
             return $notifiables instanceof Model
110 110
                 ? new ModelCollection([$notifiables]) : [$notifiables];
111 111
         }
Please login to merge, or discard this patch.