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