1 | <?php |
||
11 | class RaLocation |
||
12 | { |
||
13 | /** |
||
14 | * @var RaLocationName |
||
15 | */ |
||
16 | private $locationName; |
||
17 | |||
18 | /** |
||
19 | * @var RaLocationId |
||
20 | */ |
||
21 | private $raLocationId; |
||
22 | |||
23 | /** |
||
24 | * @var ContactInformation |
||
25 | */ |
||
26 | private $contactInformation; |
||
27 | |||
28 | /** |
||
29 | * @var Institution |
||
30 | */ |
||
31 | private $institution; |
||
32 | |||
33 | /** |
||
34 | * @var Location |
||
35 | */ |
||
36 | private $location; |
||
37 | |||
38 | public function __construct( |
||
51 | } |
||
52 |