From c5f1b99721217bf5791b08dc0139773f6f06d7ab Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Mon, 12 Jan 2015 18:18:15 +0000 Subject: [PATCH] Fixed wrong return. --- lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php b/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php index c89974a52..0b1dcfbc3 100644 --- a/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php +++ b/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php @@ -85,7 +85,7 @@ abstract class AbstractCollectionPersister implements CollectionPersister return; // ignore inverse side } - return $this->conn->executeUpdate($this->getDeleteSQL($coll), $this->getDeleteSQLParameters($coll)); + $this->conn->executeUpdate($this->getDeleteSQL($coll), $this->getDeleteSQLParameters($coll)); } /**