| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 51 | public function now(): DateTimeInterface |
||
| 52 | { |
||
| 53 | $datetime = $this->clock->now(); |
||
| 54 | foreach ($this->rewinds as $rewind) { |
||
| 55 | $datetime = $datetime->sub($rewind); |
||
| 56 | } |
||
| 57 | foreach ($this->fastForwards as $fastForward) { |
||
| 58 | $datetime = $datetime->add($fastForward); |
||
| 59 | } |
||
| 60 | return $datetime; |
||
| 61 | } |
||
| 63 |