Inventory_Presser_Business_Day::is_tomorrow()
is_tomorrow
Contents
Description Description
Is this day tomorrow?
Return Return
(bool)
Source Source
File: includes/class-business-day.php
public function is_tomorrow() { $tomorrow = $this->current_datetime(); $tomorrow->add( new DateInterval( 'P1D' ) ); return $this->weekday == $tomorrow->format( 'w' ); }
Expand full source code Collapse full source code View on Github