Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_date_updatedpublicWC 1.0

Get the date updated.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Date updated.

Usage

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

Fulfillment::get_date_updated() code WC 10.3.3

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