@@ -69,7 +69,7 @@ |
||
| 69 | 69 | */ |
| 70 | 70 | protected function startDebug(): void |
| 71 | 71 | { |
| 72 | - $this->app->booted(function () { |
|
| 72 | + $this->app->booted(function() { |
|
| 73 | 73 | app(ApiDebugger::class)->startDebug(); |
| 74 | 74 | }); |
| 75 | 75 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | |
| 36 | 36 | $this->queries = []; |
| 37 | 37 | |
| 38 | - DB::listen(function ($query) { |
|
| 38 | + DB::listen(function($query) { |
|
| 39 | 39 | $this->queries[] = [ |
| 40 | 40 | 'sql' => $query->sql, |
| 41 | 41 | 'bindings' => $query->bindings, |