| Total Complexity | 5 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | abstract class PrimitiveString extends BaseString |
||
| 20 | { |
||
| 21 | use PrimitiveType; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 31 | protected function _encodedContentDER(): string |
|
| 27 | { |
||
| 28 | 31 | return $this->_string; |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 67 | protected static function _decodeFromDER(Identifier $identifier, |
|
| 51 | } |
||
| 52 | } |
||
| 54 |