Passed
Push — master ( 9b5435...e0dff1 )
by
unknown
03:19
created
src/RequestContextProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         if ($route = $this->currentRequest->route()) {
52 52
             $controller = $route->controller;
53 53
 
54
-            if (! $controller && ! is_string($route->action['uses'])) {
54
+            if (!$controller && !is_string($route->action['uses'])) {
55 55
                 $controller = $route->action['uses'];
56 56
             }
57 57
         }
Please login to merge, or discard this patch.
src/DumpServerCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         $errorIo->success(sprintf('Server listening on %s', $this->server->getHost()));
77 77
         $errorIo->comment('Quit the server with CONTROL-C.');
78 78
 
79
-        $this->server->listen(function (Data $data, array $context, int $clientId) use ($descriptor, $io) {
79
+        $this->server->listen(function(Data $data, array $context, int $clientId) use ($descriptor, $io) {
80 80
             $descriptor->describe($io, $data, $context, $clientId);
81 81
         });
82 82
     }
Please login to merge, or discard this patch.
src/DumpServerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             'source' => new SourceContextProvider('utf-8', base_path()),
50 50
         ]);
51 51
 
52
-        VarDumper::setHandler(function ($var) use ($connection) {
52
+        VarDumper::setHandler(function($var) use ($connection) {
53 53
             $this->app->makeWith(Dumper::class, ['connection' => $connection])->dump($var);
54 54
         });
55 55
     }
Please login to merge, or discard this patch.
helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('config_path')) {
3
+if (!function_exists('config_path')) {
4 4
     /**
5 5
      * Get the configuration path.
6 6
      *
Please login to merge, or discard this patch.