Automattic\WooCommerce\Internal\StockNotifications
Notification::set_date_last_attempt
Set the date last attempt.
Method of the class: Notification{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Notification = new Notification(); $Notification->set_date_last_attempt( $date_last_attempt );
- $date_last_attempt(string|int) (required)
- Date last attempt.
Notification::set_date_last_attempt() Notification::set date last attempt code WC 10.3.6
public function set_date_last_attempt( $date_last_attempt ) {
$this->set_date_prop( 'date_last_attempt', $date_last_attempt );
}