Removing forced return true

This commit is contained in:
Larry E. Masters 2015-12-22 16:22:34 -05:00
parent 1c593eea63
commit 9abb4e19f2

View file

@ -136,7 +136,6 @@ class DatabaseSession implements CakeSessionHandlerInterface {
* @return bool True for successful delete, false otherwise. * @return bool True for successful delete, false otherwise.
*/ */
public function destroy($id) { public function destroy($id) {
return true;
return (bool)$this->_model->delete($id); return (bool)$this->_model->delete($id);
} }