Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_date_updated
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() Fulfillment::get date updated code WC 10.3.3
public function get_date_updated(): ?string {
return $this->data['date_updated'] ?? null;
}