Automattic\WooCommerce\Internal\DataStores\Fulfillments

FulfillmentsDataStoreInterface{}interfaceWC 1.0

Interface FulfillmentsDataStoreInterface

No Hooks.

Usage

$FulfillmentsDataStoreInterface = new FulfillmentsDataStoreInterface();
// use class methods

Methods

  1. public read_fulfillments( string $entity_type, string $entity_id )

Notes

  • Package: Automattic\WooCommerce\Internal\DataStores\Fulfillments

FulfillmentsDataStoreInterface{} code WC 10.3.6

interface FulfillmentsDataStoreInterface {
	/**
	 * Read the fulfillment data.
	 *
	 * @param string $entity_type The entity type.
	 * @param string $entity_id The entity ID.
	 *
	 * @return Fulfillment[] Fulfillment object.
	 */
	public function read_fulfillments( string $entity_type, string $entity_id ): array;
}