WC_Order_Item_Coupon::offsetExists PHP Метод

offsetExists() публичный Метод

offsetExists for ArrayAccess
public offsetExists ( string $offset ) : boolean
$offset string
Результат boolean
    public function offsetExists($offset)
    {
        if (in_array($offset, array('discount_amount', 'discount_amount_tax'))) {
            return true;
        }
        return parent::offsetExists($offset);
    }