diff --git a/src/helpers/Represent.php b/src/helpers/Represent.php index 1194ff9..f449c8d 100644 --- a/src/helpers/Represent.php +++ b/src/helpers/Represent.php @@ -21,7 +21,7 @@ public static function arg(mixed $value): string 'NULL' => 'NULL', 'boolean' => $value ? 'true' : 'false', 'array' => 'Array', - 'object' => 'Object(' . get_class($value) . ')', + 'object' => 'Object(' . get_class($value) . '@' . spl_object_hash($value) .')', 'string' => "'" . self::cutString((string)$value) . "'", default => (string)$value, };