Total Complexity | 5 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | abstract class PrimitiveString extends StringType |
||
16 | { |
||
17 | use PrimitiveType; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 17 | protected function _encodedContentDER(): string |
|
23 | { |
||
24 | 17 | return $this->_string; |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 53 | protected static function _decodeFromDER(Identifier $identifier, |
|
47 | } |
||
48 | } |
||
50 |