|
change Assignee because I'm inactive now In $this->remove($id) method, we can not retrieve return value of $this->_fastBackend->remove($id) now .(trunk r16971) the $this->remove($id) is : public function remove($id) { $this->_fastBackend->remove($id); return $this->_slowBackend->remove($id); } I think the method may be better as following: public function remove($id) { $canRemoveFast = $this->_fastBackend->remove($id); $canRemoveSlow = $this->_slowBackend->remove($id); return $canRemoveFast && $canRemoveSlow ; } |
||||||||||||||||||||||||||||||||||||||||
it seems to be a good idea
I will implement it in the next week
thanks