Automattic\WooCommerce\Internal\StockNotifications

Notification::set_date_confirmedpublicWC 1.0

Set the date confirmed.

Method of the class: Notification{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Notification = new Notification();
$Notification->set_date_confirmed( $date_confirmed );
$date_confirmed(string|int) (required)
Date confirmed.

Notification::set_date_confirmed() code WC 10.3.6

public function set_date_confirmed( $date_confirmed ) {
	$this->set_date_prop( 'date_confirmed', $date_confirmed );
}