Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function isMiss() |
||
40 | { |
||
41 | // Mark any cache item which has been scheduled to be cleared as a miss. |
||
42 | // We do this using callback since isHit property is private, & it will be reset on get() |
||
43 | $fn = $this->isItemDeferedClearedFn; |
||
44 | if ($fn($this->keyString)) { |
||
45 | return true; |
||
46 | } |
||
47 | |||
48 | return parent::isMiss(); |
||
49 | } |
||
50 | |||
79 |