Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_id
Get the fulfillment ID.
Method of the class: Fulfillment{}
No Hooks.
Returns
Int. Fulfillment ID.
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->get_id(): int;
Fulfillment::get_id() Fulfillment::get id code WC 10.3.3
public function get_id(): int {
return $this->data['id'] ?? 0;
}