delete() public method

public delete ( $id ) : mixed
$id
return mixed
Example #1
0
 /**
  * @param $id
  * @return mixed
  */
 public function delete($id)
 {
     $ret = parent::delete($id);
     $this->_cache->flush();
     return $ret;
 }