WC_Order_Item_Shipping::offsetExists( string $offset )

Offset exists: for ArrayAccess.


Description Description


Parameters Parameters

$offset

(Required) Key.


Top ↑

Return Return

(bool)


Top ↑

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 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.