Neos\Flow\Property\TypeConverter\DateTimeConverter::isDatePartKeysProvided PHP Метод

isDatePartKeysProvided() защищенный Метод

Returns whether date information (day, month, year) are present as keys in $source.
protected isDatePartKeysProvided ( array $source ) : boolean
$source array
Результат boolean
    protected function isDatePartKeysProvided(array $source)
    {
        return isset($source['day']) && ctype_digit($source['day']) && isset($source['month']) && ctype_digit($source['month']) && isset($source['year']) && ctype_digit($source['year']);
    }