1 | <?php |
||
24 | class AmendRegistrationAuthorityInformationCommand extends AbstractCommand |
||
25 | { |
||
26 | /** |
||
27 | * @Assert\NotBlank() |
||
28 | * @Assert\Type(type="string") |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | public $identityId; |
||
33 | |||
34 | /** |
||
35 | * @Assert\NotBlank() |
||
36 | * @Assert\Type(type="string") |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | public $location; |
||
41 | |||
42 | /** |
||
43 | * @Assert\NotBlank() |
||
44 | * @Assert\Type(type="string") |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | public $contactInformation; |
||
49 | |||
50 | /** |
||
51 | * @return array |
||
52 | */ |
||
53 | public function serialise() |
||
61 | } |
||
62 |