Home
last modified time | relevance | path

Searched refs:AbstractType (Results 51 – 73 of 73) sorted by last modified time

123

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultReference.php15 use FreeDSx\Asn1\Type\AbstractType;
58 public static function fromAsn1(AbstractType $type)
76 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php15 use FreeDSx\Asn1\Type\AbstractType;
52 * @param AbstractType ...$types
55 public static function sequence(AbstractType ...$types): SequenceType
61 * @param AbstractType ...$types
64 public static function sequenceOf(AbstractType ...$types): SequenceOfType
298 * @param AbstractType ...$types
301 public static function set(AbstractType ...$types): SetType
307 * @param AbstractType ...$types
310 public static function setOf(AbstractType ...$types): SetOfType
316 * @template T of AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DRealType.php18 class RealType extends AbstractType
H A DRelativeOidType.php18 class RelativeOidType extends AbstractType
H A DSetTrait.php31 * @param AbstractType ...$set
32 * @return AbstractType[]
34 protected function canonicalize(AbstractType ...$set): array
37 AbstractType::TAG_CLASS_UNIVERSAL => [],
38 AbstractType::TAG_CLASS_APPLICATION => [],
39 AbstractType::TAG_CLASS_CONTEXT_SPECIFIC => [],
40 AbstractType::TAG_CLASS_PRIVATE => [],
51 /* @var AbstractType $a
52 * @var AbstractType $b */
58 $children[AbstractType
[all...]
H A DAbstractStringType.php18 abstract class AbstractStringType extends AbstractType
H A DAbstractTimeType.php22 class AbstractTimeType extends AbstractType
H A DAbstractType.php23 abstract class AbstractType implements Countable, IteratorAggregate
115 * @var AbstractType[]
199 * @param AbstractType ...$types
210 * @return AbstractType[]
219 * @return null|AbstractType
221 public function getChild(int $index): ?AbstractType
227 * @param AbstractType ...$types
248 * @return ArrayIterator<AbstractType>
18 abstract class AbstractType implements \Countable, \IteratorAggregate global() class
H A DBitStringType.php18 class BitStringType extends AbstractType
128 * @return AbstractType
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DDirSyncResponseControl.php17 use FreeDSx\Asn1\Type\AbstractType;
104 public static function fromAsn1(AbstractType $type)
135 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DExpectedEntryCountControl.php17 use FreeDSx\Asn1\Type\AbstractType;
101 public static function fromAsn1(AbstractType $type)
126 public function toAsn1(): AbstractType
137 * @param AbstractType $type
140 protected static function validate(AbstractType $type): void
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DExtendedDnControl.php17 use FreeDSx\Asn1\Type\AbstractType;
71 public static function fromAsn1(AbstractType $type)
101 public function toAsn1(): AbstractType
110 * @param AbstractType $type
113 protected static function validate(AbstractType $type): void
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DPolicyHintsControl.php17 use FreeDSx\Asn1\Type\AbstractType;
71 public function toAsn1(): AbstractType
84 public static function fromAsn1(AbstractType $type)
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DSetOwnerControl.php17 use FreeDSx\Asn1\Type\AbstractType;
68 public function toAsn1(): AbstractType
81 public static function fromAsn1(AbstractType $type)
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DPagingControl.php17 use FreeDSx\Asn1\Type\AbstractType;
97 * @param AbstractType $type
102 public static function fromAsn1(AbstractType $type)
124 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DPduInterface.php13 use FreeDSx\Asn1\Type\AbstractType; alias
23 * @return AbstractType
25 public function toAsn1() : AbstractType;
28 * @param AbstractType $asn1
31 public static function fromAsn1(AbstractType $asn1);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingControl.php17 use FreeDSx\Asn1\Type\AbstractType;
89 public static function fromAsn1(AbstractType $type)
107 /** @var AbstractType $keyItem */
109 if ($keyItem instanceof OctetStringType && $keyItem->getTagClass() === AbstractType::TAG_CLASS_UNIVERSAL) {
111 } elseif ($keyItem->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $keyItem->getTagNumber() === 0) {
113 } elseif ($keyItem->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $keyItem->getTagNumber() === 1) {
118 $useReverseOrder = $encoder->complete($keyItem, AbstractType::TAG_TYPE_BOOLEAN)->getValue();
137 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DSortingResponseControl.php17 use FreeDSx\Asn1\Type\AbstractType;
97 public static function fromAsn1(AbstractType $type)
120 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DAddRequest.php15 use FreeDSx\Asn1\Type\AbstractType;
89 public static function fromAsn1(AbstractType $type)
134 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DAnonBindRequest.php15 use FreeDSx\Asn1\Type\AbstractType;
37 protected function getAsn1AuthChoice(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DUnbindRequest.php15 use FreeDSx\Asn1\Type\AbstractType;
34 public static function fromAsn1(AbstractType $type)
46 public function toAsn1(): AbstractType
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DModifyRequest.php15 use FreeDSx\Asn1\Type\AbstractType;
108 public static function fromAsn1(AbstractType $type)
131 public function toAsn1(): AbstractType
155 * @param AbstractType $type
159 protected static function parseChange(AbstractType $type): Change
14 use FreeDSx\Asn1\Type\AbstractType; global() alias
H A DPasswordModifyRequest.php17 use FreeDSx\Asn1\Type\AbstractType;
121 public function toAsn1(): AbstractType
144 public static function fromAsn1(AbstractType $type)
158 /** @var AbstractType $value */
159 if ($value->getTagClass() !== AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
14 use FreeDSx\Asn1\Type\AbstractType; global() alias

123