NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
DataStores
/
Fulfillments
/
Name
Size
Perms
Actions
📄 FulfillmentsDataStoreInterface.php
651 B
0644
Edit
|
Chmod
|
Delete
Editing: FulfillmentsDataStoreInterface.php
<?php /** * Fulfillments Data Store Interface */ declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\DataStores\Fulfillments; use Automattic\WooCommerce\Internal\Fulfillments\Fulfillment; /** * Interface FulfillmentsDataStoreInterface * * @package Automattic\WooCommerce\Internal\DataStores\Fulfillments */ 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; }
Cancel