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