Automattic\WooCommerce\Internal\StockNotifications

Notification::set_date_notifiedpublicWC 1.0

Set the date notified.

Method of the class: Notification{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Notification = new Notification();
$Notification->set_date_notified( $date_notified );
$date_notified(string|int) (required)
Date notified.

Notification::set_date_notified() code WC 10.3.6

public function set_date_notified( $date_notified ) {
	$this->set_date_prop( 'date_notified', $date_notified );
}