Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | public function save() |
||
55 | { |
||
56 | // We don't save cache during transaction (as cache is shared), & given the use of cache items within eZ |
||
57 | // Platform kernel is not used across transaction boundaries items (these) given by pool can safely be assumed |
||
58 | // to still be within transaction when save() is called. |
||
59 | // ... |
||
60 | // We do need to tell Pool that it should delete the item tough (which is done on commit if in transaction) |
||
61 | // so this save will be done on-demand when needed. |
||
62 | $clear = $this->clearFn; |
||
63 | $clear($this->keyString); |
||
64 | |||
65 | return false; |
||
66 | } |
||
67 | |||
79 |