Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace App\Domain\Registry\Repository\ConformiteOrganisation; |
4 | |
5 | use App\Application\DDD\Repository\CRUDRepositoryInterface; |
6 | use App\Domain\User\Model\Collectivity; |
7 | |
8 | interface Evaluation extends CRUDRepositoryInterface |
9 | { |
10 | /** |
11 | * @param Collectivity|array|null $organisation |
12 | */ |
13 | public function findAllByActiveOrganisationWithHasModuleConformiteOrganisationAndOrderedByDate($organisation = null); |
14 | |
15 | public function findLastByOrganisation(Collectivity $organisation): ?\App\Domain\Registry\Model\ConformiteOrganisation\Evaluation; |
16 | |
17 | public function findPaginated($firstResult, $maxResults, $orderColumn, $orderDir, $searches, $criteria = []); |
18 | |
19 | public function count(array $criteria = []); |
20 | } |