Completed
Push — master ( 45114c...2c99b9 )
by
unknown
14s queued 13s
created
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.