diff --git a/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php b/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php index afbd5a0da..adde0fa23 100644 --- a/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php +++ b/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php @@ -67,7 +67,7 @@ class ReflectionEmbeddedProperty { $embeddedObject = $this->parentProperty->getValue($object); - if ($embeddedObject === null) { + if (null === $embeddedObject) { return null; } @@ -82,7 +82,7 @@ class ReflectionEmbeddedProperty { $embeddedObject = $this->parentProperty->getValue($object); - if ($embeddedObject === null) { + if (null === $embeddedObject) { $embeddedObject = unserialize(sprintf('O:%d:"%s":0:{}', strlen($this->class), $this->class)); $this->parentProperty->setValue($object, $embeddedObject); }