/** * @param null|int $id * @return bool */ public function delete( $id = null ) { if ( ( ! $this->_post ) || $id ) { return false; } return $this->_post->delete(); }