Automattic\WooCommerce\Internal\DataStores\Fulfillments
FulfillmentsDataStoreInterface{}
Interface FulfillmentsDataStoreInterface
No Hooks.
Usage
$FulfillmentsDataStoreInterface = new FulfillmentsDataStoreInterface(); // use class methods
Methods
Notes
- Package: Automattic\WooCommerce\Internal\DataStores\Fulfillments
FulfillmentsDataStoreInterface{} 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;
}