Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class SequenceOfAttributes extends AttributeCollection |
||
19 | { |
||
20 | /** |
||
21 | * Initialize from ASN.1. |
||
22 | * |
||
23 | * @param Sequence $seq |
||
24 | * |
||
25 | * @return self |
||
26 | */ |
||
27 | 2 | public static function fromASN1(Sequence $seq): self |
|
30 | } |
||
31 | |||
32 | /** |
||
33 | * Generate ASN.1 structure. |
||
34 | * |
||
35 | * @return Sequence |
||
36 | */ |
||
37 | 2 | public function toASN1(): Sequence |
|
45 |