Completed
Push — master ( 99ae35...96bc9a )
by Renato
10:36
created
src/Laravel/SCServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     protected function registerSocketCluster()
35 35
     {
36
-        $this->app->singleton('SocketCluster', function ($app) {
36
+        $this->app->singleton('SocketCluster', function($app) {
37 37
             $config = $app['config']['broadcasting']['connections']['socketcluster'];
38 38
             $websocket = WebSocket::factory($config);
39 39
             return new SocketCluster($websocket);
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $this->app
53 53
             ->make(BroadcastManager::class)
54
-            ->extend('socketcluster', function ($app) {
54
+            ->extend('socketcluster', function($app) {
55 55
                 return new SCBroadcaster($app['SocketCluster']);
56 56
             });
57 57
     }
Please login to merge, or discard this patch.