コード例 #1
0
ファイル: PostTable.php プロジェクト: kosmosby/medicine-prof
	/**
	 * @param null|int $id
	 * @return bool
	 */
	public function delete( $id = null )
	{
		if ( ( ! $this->_post ) || $id ) {
			return false;
		}

		return $this->_post->delete();
	}