| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | 4 | protected static function expired($past, $interval) |
|
| 45 | { |
||
| 46 | 4 | $past = new \DateTimeImmutable($past, new \DateTimeZone('UTC')); |
|
| 47 | 4 | $future = $past->add(new \DateInterval("PT{$interval}S")); |
|
| 48 | 4 | $now = new \DateTimeImmutable('now', new \DateTimeZone('UTC')); |
|
| 49 | 4 | return $future <= $now; |
|
| 50 | } |
||
| 51 | |||
| 66 |