Completed
Push — master ( 8b0725...4a307c )
by Sergii
05:41
created
src/WAMPServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function register()
30 30
     {
31
-        $config = require __DIR__ . '/../config/wamp.php';
31
+        $config = require __DIR__.'/../config/wamp.php';
32 32
         $file = base_path('config/wamp.php');
33 33
         if (class_exists('\Laravel\Lumen\Application')) {
34 34
             // Configure wamp config for lumen
Please login to merge, or discard this patch.
src/Routers/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
         if (is_string($callback)) {
159 159
             list($class, $method) = explode('&', $callback);
160 160
 
161
-            $callback = function (ConnectionOpenEvent $event) use ($class, $method) {
161
+            $callback = function(ConnectionOpenEvent $event) use ($class, $method) {
162 162
                 $class = app()->make($class);
163 163
 
164 164
                 return $class->{$method}($event);
Please login to merge, or discard this patch.