1
0
mirror of synced 2025-02-06 15:29:26 +03:00

Fix errors in EntityRepository docblocks

This commit is contained in:
Benjamin Eberlei 2010-09-04 12:18:02 +02:00
parent f415fa7174
commit 24c6bb3f46

View File

@ -133,7 +133,6 @@ class EntityRepository
/** /**
* Finds all entities in the repository. * Finds all entities in the repository.
* *
* @param int $hydrationMode
* @return array The entities. * @return array The entities.
*/ */
public function findAll() public function findAll()
@ -144,8 +143,7 @@ class EntityRepository
/** /**
* Finds entities by a set of criteria. * Finds entities by a set of criteria.
* *
* @param string $column * @param array $criteria
* @param string $value
* @return array * @return array
*/ */
public function findBy(array $criteria) public function findBy(array $criteria)
@ -156,8 +154,7 @@ class EntityRepository
/** /**
* Finds a single entity by a set of criteria. * Finds a single entity by a set of criteria.
* *
* @param string $column * @param array $criteria
* @param string $value
* @return object * @return object
*/ */
public function findOneBy(array $criteria) public function findOneBy(array $criteria)