Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public function __construct($uniFares, $negoFares) |
||
45 | { |
||
46 | foreach ($uniFares as $uniFare) { |
||
47 | $this->corporateId[] = new CorporateId($uniFare, CorporateId::QUAL_UNIFARES); |
||
48 | } |
||
49 | |||
50 | foreach ($negoFares as $negoFare) { |
||
51 | $this->corporateId[] = new CorporateId($negoFare, CorporateId::QUAL_AMADEUS_NEGO_FARES); |
||
52 | } |
||
53 | } |
||
54 | } |
||
55 |