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