Use strict comparison

This commit is contained in:
Sebastian Bergmann 2024-03-29 08:01:49 +01:00
parent a7c4e3642a
commit 16cb1f8ca0
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ final class Exporter
if (is_object($value)) {
$class = $value::class;
if ($processed->contains($value)) {
if ($processed->contains($value) !== false) {
return $class . ' Object #' . spl_object_id($value);
}