123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace FG\ASN1\Universal;
- use FG\ASN1\AbstractString;
- use FG\ASN1\Identifier;
- class T61String extends AbstractString
- {
-
- public function __construct($string)
- {
- $this->value = $string;
- $this->allowAll();
- }
- public function getType()
- {
- return Identifier::T61_STRING;
- }
- }
|