1 | <?php |
||
12 | class ScheduleRepository extends EntityRepository |
||
13 | { |
||
14 | /** |
||
15 | * @param string $name |
||
16 | * |
||
17 | * @return ScheduleInterface |
||
18 | * |
||
19 | * @throws NoResultException |
||
20 | */ |
||
21 | public function findByName($name) |
||
29 | |||
30 | /** |
||
31 | * @param array $names |
||
32 | * |
||
33 | * @return ScheduleInterface[] |
||
34 | */ |
||
35 | public function findNotInNames(array $names) |
||
43 | |||
44 | /** |
||
45 | * @return ScheduleInterface[] |
||
46 | */ |
||
47 | public function findActive() |
||
54 | } |
||
55 |