@@ -51,7 +51,7 @@ |
||
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 | } |
@@ -76,7 +76,7 @@ |
||
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 | } |
@@ -49,7 +49,7 @@ |
||
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 | } |
@@ -1,6 +1,6 @@ |
||
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 | * |