Passed
Push — semantic-logger ( 4aff0d...d6528a )
by Akihito
03:46 queued 01:24
created
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.