Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function __construct( |
||
39 | RaLocationId $raLocationId, |
||
40 | Institution $institution, |
||
41 | RaLocationName $locationName, |
||
42 | Location $location, |
||
43 | ContactInformation $contactInformation |
||
44 | ) { |
||
45 | $this->raLocationId = $raLocationId; |
||
46 | $this->institution = $institution; |
||
47 | $this->locationName = $locationName; |
||
48 | $this->location = $location; |
||
49 | $this->contactInformation = $contactInformation; |
||
50 | } |
||
51 | } |
||
52 |