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

createFromDate() public static method

Create a ChronosInterface instance from just a date. The time portion is set to now.
public static createFromDate ( integer $year = null, integer $month = null, integer $day = null, DateTimeZon\DateTimeZone | string | null $tz = null ) : static
$year integer The year to create an instance with.
$month integer The month to create an instance with.
$day integer The day to create an instance with.
$tz DateTimeZon\DateTimeZone | string | null The DateTimeZone object or timezone name the new instance should use.
return static
    public static function createFromDate($year = null, $month = null, $day = null, $tz = null)
    {
        return static::create($year, $month, $day, null, null, null, $tz);
    }