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