WC_Order_Item_Shipping::offsetExists( string $offset )
Offset exists: for ArrayAccess.
Description Description
Parameters Parameters
- $offset
-
(Required) Key.
Return Return
(bool)
Source Source
File: includes/class-wc-order-item-shipping.php
public function offsetExists( $offset ) {
if ( in_array( $offset, array( 'cost' ), true ) ) {
return true;
}
return parent::offsetExists( $offset );
}