Inventory_Presser_Business_Day::is_tomorrow()

Is this day tomorrow?

On This Page


Return Return

(bool)


Top ↑

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' );
	}