| 1 | <?php |
||
| 11 | class TaskExecutionRepository extends EntityRepository implements TaskExecutionRepositoryInterface |
||
| 12 | { |
||
| 13 | public function findByStartTime(TaskInterface $task, \DateTime $scheduleTime) |
||
| 24 | |||
| 25 | public function findScheduled(\DateTime $dateTime = null) |
||
| 39 | |||
| 40 | public function save(TaskExecutionInterface $execution) |
||
| 44 | |||
| 45 | public function add(TaskExecutionInterface $execution) |
||
| 50 | } |
||
| 51 |