Home
last modified time | relevance | path

Searched refs:matchMap (Results 1 – 2 of 2) sorted by relevance

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DCerDerTrait.php79 protected function validateDateFormat(array $matches, array $matchMap) argument
81 …if (isset($matchMap['fractions']) && isset($matches[$matchMap['fractions']]) && $matches[$matchMap
82 if ($matches[$matchMap['fractions']][-1] === '0') {
H A DBerEncoder.php914 * @param array $matchMap
919 protected function decodeTime(string $format, string $regex, array $matchMap, $length): array argument
926 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 …]