1 | <?php |
||
17 | class TaskEntityRepository extends EntityRepository |
||
18 | { |
||
19 | /** |
||
20 | * Finds all entities with no exit code. |
||
21 | * |
||
22 | * @return TaskEntity[] |
||
23 | */ |
||
24 | 2 | public function findAllWithNoExitCode() |
|
33 | |||
34 | /** |
||
35 | * Find next entity. |
||
36 | * |
||
37 | * @param array $criteria |
||
38 | * |
||
39 | * @return TaskEntity|null |
||
40 | */ |
||
41 | 4 | public function findNext(array $criteria = []) |
|
48 | |||
49 | /** |
||
50 | * Find next entity by commandline. |
||
51 | * |
||
52 | * @param string $commandline |
||
53 | * |
||
54 | * @return TaskEntity|null |
||
55 | */ |
||
56 | 2 | public function findNextByCommandline($commandline) |
|
60 | } |
||
61 |