1 | <?php |
||
10 | class TaskRepository implements TaskRepositoryInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ObjectManager |
||
14 | */ |
||
15 | private $objectManager; |
||
16 | |||
17 | /** |
||
18 | * @var ORMTaskRepository |
||
19 | */ |
||
20 | private $taskRepository; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function add(TaskInterface $task) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function findAll() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function findEndBeforeNow() |
||
46 | } |
||
47 |