Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::set_entity_id
Set the entity ID.
Method of the class: Fulfillment{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->set_entity_id( ?string $entity_id ): void;
- ?string $entity_id(required)
- .
Fulfillment::set_entity_id() Fulfillment::set entity id code WC 10.3.3
public function set_entity_id( ?string $entity_id ): void {
$this->data['entity_id'] = $entity_id;
}