@@ -24,7 +24,7 @@  | 
                                                    ||
| 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 | |
@@ -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 | |