Completed
Push — master ( b5cc14...d04358 )
by Sergii
23:17 queued 02:11
created
src/Routers/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $middleware = isset($config['middleware']) ? explode('|', $config['middleware']) : [];
30 30
         $namespace = isset($config['namespace']) ? $config['namespace'] : 'App\Controllers\WAMP';
31 31
 
32
-        $this->groups[] = (object)[
32
+        $this->groups[] = (object) [
33 33
             'middleware' => $middleware,
34 34
             'namespace'  => $namespace,
35 35
             'prefix'     => isset($config['prefix']) ? $config['prefix'] : '',
Please login to merge, or discard this patch.
src/WAMPServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
                  ] as $alias => $abstract) {
53 53
 
54 54
             $this->app->singleton($abstract[0], $abstract[1]);
55
-            $this->app->singleton($alias, function () use ($abstract) {
55
+            $this->app->singleton($alias, function() use ($abstract) {
56 56
                 return app()->make($abstract[0]);
57 57
             });
58 58
         }
Please login to merge, or discard this patch.