Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_is_fulfilled
Get if the fulfillment is fulfilled.
Method of the class: Fulfillment{}
No Hooks.
Returns
true|false. Whether the fulfillment is fulfilled.
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->get_is_fulfilled(): bool;
Fulfillment::get_is_fulfilled() Fulfillment::get is fulfilled code WC 10.3.3
public function get_is_fulfilled(): bool {
return $this->data['is_fulfilled'] ?? false;
}