1 | <?php |
||
25 | class AppointRoleCommand 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 |
||
40 | */ |
||
41 | public $role; |
||
42 | |||
43 | /** |
||
44 | * @Assert\NotBlank() |
||
45 | * @Assert\Type(type="string") |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | public $raInstitution; |
||
50 | |||
51 | /** |
||
52 | * @inheritDoc |
||
53 | */ |
||
54 | public function getRaInstitution() |
||
58 | } |
||
59 |