Automattic\WooCommerce\Admin\Features\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.8.1
public function set_entity_id( ?string $entity_id ): void {
$this->set_prop( 'entity_id', $entity_id );
}