| 1 | <?php |
||
| 16 | class CPSQualifier extends PolicyQualifierInfo |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * URI. |
||
| 20 | * |
||
| 21 | * @var string $_uri |
||
| 22 | */ |
||
| 23 | protected $_uri; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | * |
||
| 28 | * @param string $uri |
||
| 29 | */ |
||
| 30 | 16 | public function __construct(string $uri) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * |
||
| 38 | * @param UnspecifiedType $el |
||
| 39 | * @return self |
||
| 40 | */ |
||
| 41 | 12 | public static function fromQualifierASN1(UnspecifiedType $el): self |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Get URI. |
||
| 48 | * |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | 3 | public function uri(): string |
|
| 55 | |||
| 56 | /** |
||
| 57 | * |
||
| 58 | * {@inheritdoc} |
||
| 59 | * @return IA5String |
||
| 60 | */ |
||
| 61 | 18 | protected function _qualifierASN1(): IA5String |
|
| 65 | } |
||
| 66 |