| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | 9 | public function execute() |
|
| 47 | { |
||
| 48 | 9 | $this->result->setStartTime(new \DateTime()); |
|
| 49 | 9 | while (!$this->queue->isEmpty()) { |
|
| 50 | /** @var ActionInterface $action */ |
||
| 51 | 9 | $action = $this->queue->dequeue(); |
|
| 52 | 9 | $action->process($this->result); |
|
| 53 | 9 | } |
|
| 54 | 9 | $this->result->setEndTime(new \DateTime()); |
|
| 55 | 9 | } |
|
| 56 | } |
||
| 57 |