Fix errors in EntityRepository docblocks
This commit is contained in:
parent
f415fa7174
commit
24c6bb3f46
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user