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

minValue() public static method

Create a ChronosInterface instance for the lowest supported date.
public static minValue ( ) : Cake\Chronos\ChronosInterface
return Cake\Chronos\ChronosInterface
    public static function minValue()
    {
        $max = PHP_INT_SIZE === 4 ? PHP_INT_MAX : PHP_INT_MAX / 10;
        return static::createFromTimestamp(~$max);
    }