Passed
Pull Request — main (#5)
by Качула
10:47
created
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Support/ApiDebugger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.