WC_Order_Item_Coupon::offsetExists PHP Method

offsetExists() public method

offsetExists for ArrayAccess
public offsetExists ( string $offset ) : boolean
$offset string
return boolean
    public function offsetExists($offset)
    {
        if (in_array($offset, array('discount_amount', 'discount_amount_tax'))) {
            return true;
        }
        return parent::offsetExists($offset);
    }