Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_is_fulfilledpublicWC 1.0

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() code WC 10.3.3

public function get_is_fulfilled(): bool {
	return $this->data['is_fulfilled'] ?? false;
}