1
0
mirror of synced 2025-01-18 14:31:40 +03:00

Merge pull request #178 from adrienbrault/master

Fix Query iterate() doc return type
This commit is contained in:
Guilherme Blanco 2011-10-29 06:39:27 -07:00
commit 96cb3d8004
2 changed files with 2 additions and 2 deletions

View File

@ -545,7 +545,7 @@ abstract class AbstractQuery
*
* @param array $params The query parameters.
* @param integer $hydrationMode The hydration mode to use.
* @return IterableResult
* @return \Doctrine\ORM\Internal\Hydration\IterableResult
*/
public function iterate(array $params = array(), $hydrationMode = null)
{

View File

@ -526,7 +526,7 @@ final class Query extends AbstractQuery
*
* @param array $params The query parameters.
* @param integer $hydrationMode The hydration mode to use.
* @return IterableResult
* @return \Doctrine\ORM\Internal\Hydration\IterableResult
*/
public function iterate(array $params = array(), $hydrationMode = self::HYDRATE_OBJECT)
{