1
0
mirror of synced 2025-02-20 22:23:14 +03:00

Fixed wrong return.

This commit is contained in:
Guilherme Blanco 2015-01-12 18:18:15 +00:00
parent 73afcec22a
commit c5f1b99721

View File

@ -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));
}
/**