Searched refs:matchMap (Results 1 – 2 of 2) sorted by relevance
79 protected function validateDateFormat(array $matches, array $matchMap) argument81 …if (isset($matchMap['fractions']) && isset($matches[$matchMap['fractions']]) && $matches[$matchMap…82 if ($matches[$matchMap['fractions']][-1] === '0') {
914 * @param array $matchMap919 protected function decodeTime(string $format, string $regex, array $matchMap, $length): array argument926 if ($matches[$matchMap['hours']] === '24') {933 if (isset($matches[$matchMap['minutes']]) && $matches[$matchMap['minutes']] !== '') {938 if (isset($matches[$matchMap['seconds']]) && $matches[$matchMap['seconds']] !== '') {943 …if (isset($matchMap['fractions']) && isset($matches[$matchMap['fractions']]) && $matches[$matchMap…948 if (isset($matches[$matchMap['timezone']]) && $matches[$matchMap['timezone']] !== '') {949 …$tzFormat = $matches[$matchMap['timezone']] === 'Z' ? AbstractTimeType::TZ_UTC : AbstractTimeType:…952 $this->validateDateFormat($matches, $matchMap);967 * @param array $matchMap[all …]