From fc3f233923abb5f868e7c27023092833ffcc7f8e Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 5 Dec 2014 11:18:10 +0100 Subject: [PATCH] Yodaism good for you: is. --- lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }