Completed
Push — master ( 1d3a2c...7c8f91 )
by Renato
10:44
created
src/Providers/PimpleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function register(Container $app)
18 18
     {
19
-        $app['socketcluster'] = function ($app) {
19
+        $app['socketcluster'] = function($app) {
20 20
             $websocket = WebSocket::factory($app['socketcluster.options']);
21 21
             return new SocketCluster($websocket);
22 22
         };
Please login to merge, or discard this patch.
src/Providers/LaravelServiceProvider.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.