1 | <?php |
||
24 | class InstitutionConfigurationOptions implements Dto |
||
25 | { |
||
26 | /** |
||
27 | * @Assert\NotBlank(message="middleware_client.dto.configuration.use_ra_locations.must_not_be_blank") |
||
28 | * @Assert\Type(type="boolean", message="middleware_client.dto.configuration.use_ra_locations.must_be_boolean") |
||
29 | */ |
||
30 | public $useRaLocations; |
||
31 | |||
32 | /** |
||
33 | * @Assert\NotBlank(message="middleware_client.dto.configuration.show_raa_contact_information.must_not_be_blank") |
||
34 | * @Assert\Type(type="boolean", message="middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean") |
||
|
|||
35 | */ |
||
36 | public $showRaaContactInformation; |
||
37 | |||
38 | /** |
||
39 | * @param array $data |
||
40 | * @return InstitutionConfigurationOptions |
||
41 | */ |
||
42 | public static function fromData(array $data) |
||
50 | } |
||
51 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.