Inventory_Presser_Business_Day::is_tomorrow()

is_tomorrow


Description Description

Is this day tomorrow?


Top ↑

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