| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | class RetractRegistrationAuthorityCommand extends AbstractCommand implements RaExecutable |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | #[Assert\NotBlank] |
||
| 31 | #[Assert\Type(type: 'string')] |
||
| 32 | public string $identityId; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | #[Assert\NotBlank] |
||
| 38 | #[Assert\Type(type: 'string')] |
||
| 39 | public string $raInstitution; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritDoc |
||
| 43 | */ |
||
| 44 | public function getRaInstitution(): string |
||
| 49 |