Changeset 6839
- Timestamp:
- 12/01/09 14:19:05 (8 months ago)
- Files:
-
- 1 modified
-
branches/1.2/lib/Doctrine/Cache/Array.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/lib/Doctrine/Cache/Array.php
r6821 r6839 90 90 protected function _doDelete($id) 91 91 { 92 $exists = isset($this->data[$id]); 93 92 94 unset($this->data[$id]); 93 95 94 return true;96 return $exists; 95 97 } 96 98 }