1 | <?php |
||
25 | class ChangeRaLocationCommand extends AbstractCommand implements RaExecutable |
||
26 | { |
||
27 | /** |
||
28 | * @Assert\NotBlank() |
||
29 | * @Assert\Type(type="string") |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | public $raLocationId; |
||
34 | |||
35 | /** |
||
36 | * @Assert\NotBlank() |
||
37 | * @Assert\Type(type="string") |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | public $institution; |
||
42 | |||
43 | /** |
||
44 | * @Assert\NotBlank() |
||
45 | * @Assert\Type(type="string") |
||
46 | * |
||
47 | * @var string |
||
48 | */ |
||
49 | public $raLocationName; |
||
50 | |||
51 | /** |
||
52 | * @Assert\NotBlank() |
||
53 | * @Assert\Type(type="string") |
||
54 | * |
||
55 | * @var string |
||
56 | */ |
||
57 | public $location; |
||
58 | |||
59 | /** |
||
60 | * @Assert\Type(type="string") |
||
61 | * |
||
62 | * @var string |
||
63 | */ |
||
64 | public $contactInformation; |
||
65 | |||
66 | /** |
||
67 | * @inheritDoc |
||
68 | */ |
||
69 | public function getRaInstitution() |
||
73 | } |
||
74 |