Passed
Pull Request — 1.x (#334)
by Akihito
02:32
created
src/RequestInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @param Query $query
18 18
      */
19
-    public function __invoke(array|null $query = null): ResourceObject;
19
+    public function __invoke(array | null $query = null): ResourceObject;
20 20
 
21 21
     /**
22 22
      * Set query
Please login to merge, or discard this patch.
src/SemanticLog/Profile/Compact/ErrorContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,6 +46,6 @@
 block discarded – undo
46 46
         $crc = crc32($this->exceptionAsString);
47 47
         $crcHex = dechex($crc & 0xFFFFFFFF); // Ensure positive hex value
48 48
 
49
-        return 'e-bear-resource-' . $crcHex;
49
+        return 'e-bear-resource-'.$crcHex;
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/SemanticLog/Profile/Verbose/ErrorContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         $crc = crc32($this->exceptionAsString);
67 67
         $crcHex = dechex($crc & 0xFFFFFFFF); // Ensure positive hex value
68 68
 
69
-        return 'e-bear-resource-' . $crcHex;
69
+        return 'e-bear-resource-'.$crcHex;
70 70
     }
71 71
 
72 72
     /** @return array<string, mixed> */
Please login to merge, or discard this patch.
src/SemanticLog/Profile/Verbose/OpenContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $this->uri = $request->toUri();
41 41
         $this->call = [
42 42
             $request->resourceObject::class,
43
-            'on' . ucfirst(strtolower($request->method)),
43
+            'on'.ucfirst(strtolower($request->method)),
44 44
         ];
45 45
 
46 46
         // Start profiling (but don't capture data yet - that's for close)
Please login to merge, or discard this patch.