Home
last modified time | relevance | path

Searched refs:GeneralizedTimeType (Results 1 – 3 of 3) sorted by relevance

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DBerEncoder.php25 use FreeDSx\Asn1\Type\GeneralizedTimeType;
217 case $type instanceof GeneralizedTimeType:
432 $type = EncodedType\GeneralizedTimeType::withTag($tagNumber, $class, $isConstructed, ...$this->decodeGeneralizedTime($length));
738 * @param GeneralizedTimeType $type
742 protected function encodeGeneralizedTime(GeneralizedTimeType $type)
765 if ($type->getDateTimeFormat() === GeneralizedTimeType::FORMAT_SECONDS || $type->getDateTimeFormat() === GeneralizedTimeType::FORMAT_FRACTIONS) {
767 } elseif ($type->getDateTimeFormat() === GeneralizedTimeType::FORMAT_MINUTES) {
793 if ($tzFormat === GeneralizedTimeType::TZ_LOCAL) {
795 } elseif ($tzFormat === GeneralizedTimeType
23 use FreeDSx\Asn1\Type\GeneralizedTimeType; global() alias
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php21 use FreeDSx\Asn1\Type\GeneralizedTimeType;
189 * @return GeneralizedTimeType
191 public static function generalizedTime(?DateTimeInterface $dateTime = null, string $dateFormat = AbstractTimeType::FORMAT_FRACTIONS, string $tzFormat = AbstractTimeType::TZ_UTC): GeneralizedTimeType
193 return new GeneralizedTimeType($dateTime, $dateFormat, $tzFormat);
20 use FreeDSx\Asn1\Type\GeneralizedTimeType; global() alias
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DGeneralizedTimeType.php20 class GeneralizedTimeType extends AbstractTimeType
18 class GeneralizedTimeType extends AbstractTimeType global() class