1 | <?php |
||
26 | class ExpressLocalePreferenceCommand extends AbstractCommand implements SelfServiceExecutable, RaExecutable |
||
27 | { |
||
28 | /** |
||
29 | * @Assert\NotBlank() |
||
30 | * @Assert\Type(type="string") |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | public $identityId; |
||
35 | |||
36 | /** |
||
37 | * @Assert\NotBlank() |
||
38 | * @Assert\Type(type="string") |
||
39 | * |
||
40 | * @var string |
||
41 | */ |
||
42 | public $preferredLocale; |
||
43 | |||
44 | /** |
||
45 | * @inheritDoc |
||
46 | */ |
||
47 | public function getRaInstitution() |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getIdentityId() |
||
59 | } |
||
60 |