@@ -97,15 +97,15 @@ |
||
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 |