1 | <?php |
||
25 | class RetractRegistrationAuthorityCommand extends AbstractCommand implements RaExecutable |
||
26 | { |
||
27 | /** |
||
28 | * @Assert\NotBlank() |
||
29 | * @Assert\Type(type="string") |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | public $identityId; |
||
34 | |||
35 | /** |
||
36 | * @Assert\NotBlank() |
||
37 | * @Assert\Type(type="string") |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | public $raInstitution; |
||
42 | |||
43 | /** |
||
44 | * @inheritDoc |
||
45 | */ |
||
46 | public function getRaInstitution() |
||
50 | } |
||
51 |