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