Passed
Push — debugInfo ( 75c149...46369e )
by Marc
03:34
created
src/EnumMap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@
 block discarded – undo
63 63
      * @return array<string, mixed>
64 64
      */
65 65
     public function __debugInfo(): array {
66
-        $dbg = (array)$this;
67
-        $dbg["\0" . self::class . "\0__pairs"] = array_map(function ($k, $v) {
66
+        $dbg = (array) $this;
67
+        $dbg["\0".self::class."\0__pairs"] = array_map(function($k, $v) {
68 68
             return [$k, $v];
69 69
         }, $this->getKeys(), $this->getValues());
70 70
         return $dbg;
Please login to merge, or discard this patch.