| 1 | <?php |
||
| 14 | */ |
||
| 15 | abstract class PrimitiveString extends StringType |
||
| 16 | { |
||
| 17 | use PrimitiveType; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | 16 | protected function _encodedContentDER(): string |
|
| 23 | { |
||
| 24 | 16 | return $this->_string; |
|
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | 52 | protected static function _decodeFromDER(Identifier $identifier, |
|
| 47 | } |
||
| 48 | } |
||
| 49 | } |
||
| 50 |