From a12e5ac8a719e332ca18e47c34a6832ac265b75b Mon Sep 17 00:00:00 2001 From: Daniel Holmes Date: Mon, 16 Jan 2012 08:12:11 +1100 Subject: [PATCH] Updated some comparisons to strict equality --- lib/Doctrine/ORM/Persisters/ManyToManyPersister.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/Persisters/ManyToManyPersister.php b/lib/Doctrine/ORM/Persisters/ManyToManyPersister.php index 4286264f0..54dc2141d 100644 --- a/lib/Doctrine/ORM/Persisters/ManyToManyPersister.php +++ b/lib/Doctrine/ORM/Persisters/ManyToManyPersister.php @@ -255,8 +255,8 @@ class ManyToManyPersister extends AbstractCollectionPersister // shortcut for new entities $entityState = $uow->getEntityState($element, UnitOfWork::STATE_NEW); - if ($entityState == UnitOfWork::STATE_NEW || - ($entityState == UnitOfWork::STATE_MANAGED && $uow->isScheduledForInsert($element))) { + if ($entityState === UnitOfWork::STATE_NEW || + ($entityState === UnitOfWork::STATE_MANAGED && $uow->isScheduledForInsert($element))) { return false; } @@ -277,7 +277,7 @@ class ManyToManyPersister extends AbstractCollectionPersister $uow = $this->_em->getUnitOfWork(); // shortcut for new entities - if ($uow->getEntityState($element, UnitOfWork::STATE_NEW) == UnitOfWork::STATE_NEW) { + if ($uow->getEntityState($element, UnitOfWork::STATE_NEW) === UnitOfWork::STATE_NEW) { return false; }