| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function delete($tableName, $condition){ |
||
| 41 | if ($cache=$this->getArrayCache($tableName)) { |
||
| 42 | $key=$this->getKey($condition); |
||
| 43 | if (isset($cache[$key])){ |
||
| 44 | unset($cache[$key]); |
||
| 45 | $this->cache->store($tableName, "return " . JArray::asPhpArray($cache, "array") . ";"); |
||
| 46 | } |
||
| 47 | } |
||
| 48 | } |
||
| 49 | } |
||
| 50 |