From 278b8bfa08e2671b558ee9cde829e4f1ba767770 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 13 Jan 2015 14:58:56 +0100 Subject: [PATCH] #1246 DDC-3487 - minor alignment fixes --- lib/Doctrine/ORM/Persisters/OneToManyPersister.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Persisters/OneToManyPersister.php b/lib/Doctrine/ORM/Persisters/OneToManyPersister.php index 239477edb..a890f19ac 100644 --- a/lib/Doctrine/ORM/Persisters/OneToManyPersister.php +++ b/lib/Doctrine/ORM/Persisters/OneToManyPersister.php @@ -67,7 +67,17 @@ class OneToManyPersister extends AbstractCollectionPersister throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections."); } - return $persister->load(array($mapping['mappedBy'] => $coll->getOwner(), $mapping['indexBy'] => $index), null, null, array(), null, 1); + return $persister->load( + array( + $mapping['mappedBy'] => $coll->getOwner(), + $mapping['indexBy'] => $index + ), + null, + null, + array(), + null, + 1 + ); } /**