Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_entity_idpublicWC 1.0

Get the entity ID.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Entity ID.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_entity_id(): ?string;

Fulfillment::get_entity_id() code WC 10.3.3

public function get_entity_id(): ?string {
	return $this->data['entity_id'] ?? null;
}