Cake\Chronos\Traits\FactoryTrait::tomorrow PHP Method

tomorrow() public static method

Create a ChronosInterface instance for tomorrow
public static tomorrow ( DateTimeZon\DateTimeZone | string | null $tz = null ) : static
$tz DateTimeZon\DateTimeZone | string | null The DateTimeZone object or timezone name the new instance should use.
return static
    public static function tomorrow($tz = null)
    {
        return new static('tomorrow, midnight', $tz);
    }