Automattic\WooCommerce\Internal\StockNotifications

Notification::set_date_modifiedpublicWC 1.0

Set the date modified.

Method of the class: Notification{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Notification = new Notification();
$Notification->set_date_modified( $date_modified );
$date_modified(string|int) (required)
Date modified.

Notification::set_date_modified() code WC 10.3.6

public function set_date_modified( $date_modified ) {
	$this->set_date_prop( 'date_modified', $date_modified );
}