1 | <?php |
||
24 | class InstitutionConfigurationOptions implements Dto |
||
25 | { |
||
26 | /** |
||
27 | * @Assert\Type(type="boolean", message="middleware_client.dto.configuration.use_ra_locations.must_be_boolean") |
||
28 | */ |
||
29 | public $useRaLocations; |
||
30 | |||
31 | /** |
||
32 | * @Assert\Type(type="boolean", message="middleware_client.dto.configuration.show_raa_contact_information.must_be_boolean") |
||
|
|||
33 | */ |
||
34 | public $showRaaContactInformation; |
||
35 | |||
36 | /** |
||
37 | * @param array $data |
||
38 | * @return InstitutionConfigurationOptions |
||
39 | */ |
||
40 | public static function fromData(array $data) |
||
48 | } |
||
49 |
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.