Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_statuspublicWC 1.0

Get the fulfillment status.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Fulfillment status.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_status(): ?string;

Fulfillment::get_status() code WC 10.3.3

public function get_status(): ?string {
	return $this->data['status'] ?? null;
}