1 | <?php |
||
12 | */ |
||
13 | class T61String extends PrimitiveString |
||
14 | { |
||
15 | use UniversalClass; |
||
16 | |||
17 | /** |
||
18 | * Constructor. |
||
19 | * |
||
20 | * @param string $string |
||
21 | */ |
||
22 | 4 | public function __construct(string $string) |
|
23 | { |
||
24 | 4 | $this->_typeTag = self::TYPE_T61_STRING; |
|
25 | 4 | parent::__construct($string); |
|
26 | 4 | } |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 4 | protected function _validateString(string $string): bool |
|
36 | } |
||
37 | } |
||
38 |