Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | class EOC extends Element |
||
19 | { |
||
20 | use UniversalClass; |
||
21 | use PrimitiveType; |
||
22 | |||
23 | /** |
||
24 | * Constructor. |
||
25 | */ |
||
26 | 32 | public function __construct() |
|
27 | { |
||
28 | 32 | $this->_typeTag = self::TYPE_EOC; |
|
29 | 32 | } |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 23 | protected function _encodedContentDER(): string |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 28 | protected static function _decodeFromDER(Identifier $identifier, |
|
55 |