Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_date_fulfilled
Get the date the fulfillment was fulfilled.
Method of the class: Fulfillment{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->get_date_fulfilled(): ?string;
Fulfillment::get_date_fulfilled() Fulfillment::get date fulfilled code WC 10.3.3
public function get_date_fulfilled(): ?string {
return $this->meta_exists( '_date_fulfilled' ) ? $this->get_meta( '_date_fulfilled', true ) : null;
}