Method |
Description |
|
__call ( string $method, array $arguments ) : method |
Convenient method that intercepts the find*By*() calls. |
|
__construct ( string $className, Manager $manager ) |
Instantiates a new repository. |
|
find ( string $rid, $fetchPlan = '*:0' ) : object |
Finds an object by its primary key / identifier. |
|
findAll ( ) : mixed |
Finds all objects in the repository. |
|
findBy ( array $criteria, array $orderBy = [], integer | null $limit = null, integer | null $offset = null, $fetchPlan = '*:0' ) : mixed |
Finds objects by a set of criteria. |
|
findOneBy ( array $criteria ) : object |
Finds a single object by a set of criteria. |
|
getClassName ( ) : string |
Returns the POPO class associated with this repository. |
|