1
0
mirror of synced 2025-01-19 06:51:40 +03:00

#1246 DDC-3487 - removing unused assignment

This commit is contained in:
Marco Pivetta 2015-01-13 14:30:51 +01:00
parent a8dcc2acf3
commit 77234d6aec

View File

@ -229,10 +229,12 @@ class ManyToManyPersister extends AbstractCollectionPersister
. implode(' AND ', $onConditions) . implode(' AND ', $onConditions)
. ' WHERE ' . implode(' AND ', $whereClauses); . ' WHERE ' . implode(' AND ', $whereClauses);
$stmt = $this->conn->executeQuery($sql, $params); $stmt = $this->conn->executeQuery($sql, $params);
$hydrator = $this->em->newHydrator(Query::HYDRATE_OBJECT);
return $hydrator->hydrateAll($stmt, $rsm); return $this
->em
->newHydrator(Query::HYDRATE_OBJECT)
->hydrateAll($stmt, $rsm);
} }
/** /**