| Conditions | 4 |
| Paths | 4 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 85 | 6 | public function runTasks() |
|
| 86 | { |
||
| 87 | 6 | foreach ($this->tasks as $task) |
|
| 88 | { |
||
| 89 | 6 | if (time() < $task->getExpiryTime()) |
|
| 90 | 1 | continue; |
|
| 91 | |||
| 92 | 6 | $result = $task->run(); |
|
| 93 | |||
| 94 | // It is removed first. |
||
| 95 | 6 | $this->remove($task); |
|
| 96 | |||
| 97 | 6 | if ($result instanceof TaskInterface) |
|
| 98 | 2 | $this->add($result); |
|
| 99 | } |
||
| 100 | } |
||
| 101 | } |