コード例 #1
0
ファイル: deprecated.inc.php プロジェクト: Dirty-Butter/v6
function salePrice($normPrice, $salePrice)
{
    trigger_error('salePrice() is deprecated. Please use Tax::salePrice(float $normal_price, float $sale_price) instead.', E_USER_NOTICE);
    $tax = new Tax();
    return $tax->salePrice($normPrice, $salePrice);
}