| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 8 |
| Ratio | 100 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | 2 | public function seconds() |
|
| 39 | { |
||
| 40 | 2 | $offset_time = clone $this->time; |
|
| 41 | 2 | $offset_time->modify('+1 day')->setTime(0, 0, 0); |
|
| 42 | 2 | $offset = $offset_time->getTimestamp() - $this->time->getTimestamp(); // offset to next day |
|
| 43 | |||
| 44 | 2 | return $offset + rand(0, 86400); // 86400 is a 1 day |
|
| 45 | } |
||
| 46 | } |
||
| 47 |