| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 78 | private function stillRestricted($key) |
||
| 79 | { |
||
| 80 | $timestamp = $this->provider->get($key); |
||
| 81 | $currentDate = new \DateTime(); |
||
| 82 | $currentTimestamp = $currentDate->getTimestamp(); |
||
| 83 | |||
| 84 | if ($timestamp < $currentTimestamp) { |
||
| 85 | $this->removeItem($key); |
||
| 86 | return false; |
||
| 87 | } |
||
| 88 | |||
| 89 | return true; |
||
| 90 | } |
||
| 92 |