Completed
Push — master ( ff0f02...93718e )
by
unknown
39s queued 35s
created
src/RateLimitedNotification.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             if ($strategy == 'serialize') {
43 43
                 return [$serialized_notification];
44 44
             } else {
45
-                if (! in_array($strategy, hash_algos())) {
45
+                if (!in_array($strategy, hash_algos())) {
46 46
                     throw new \Exception("Unsupported unique notification strategy hashing algorithm: $strategy");
47 47
                 }
48 48
 
@@ -116,15 +116,15 @@  discard block
 block discarded – undo
116 116
             $key = $notifiable->rateLimitNotifiableKey();
117 117
         }
118 118
 
119
-        if (! $key && method_exists($notifiable, 'getKey')) {
119
+        if (!$key && method_exists($notifiable, 'getKey')) {
120 120
             $key = $notifiable->getKey();
121 121
         }
122 122
 
123
-        if (! $key && property_exists($notifiable, 'id')) {
123
+        if (!$key && property_exists($notifiable, 'id')) {
124 124
             $key = $notifiable->id;
125 125
         }
126 126
 
127
-        if (! $key) {
127
+        if (!$key) {
128 128
             $key = md5(json_encode($notifiable));
129 129
         }
130 130
 
Please login to merge, or discard this patch.