FlightInfo::__construct()   B
last analyzed

Complexity

Conditions 9
Paths 128

Size

Total Lines 40
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 26
CRAP Score 9

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 18
c 1
b 0
f 0
dl 0
loc 40
ccs 26
cts 26
cp 1
rs 7.8222
cc 9
nc 128
nop 8
crap 9

How to fix   Many Parameters   

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
<?php
2
/**
3
 * amadeus-ws-client
4
 *
5
 * Copyright 2015 Amadeus Benelux NV
6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 * http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 *
19
 * @package Amadeus
20
 * @license https://opensource.org/licenses/Apache-2.0 Apache 2.0
21
 */
22
23
namespace Amadeus\Client\Struct\Fare\MasterPricer;
24
25
/**
26
 * FlightInfo
27
 *
28
 * @package Amadeus\Client\Struct\Fare\MasterPricer
29
 * @author Dieter Devlieghere <[email protected]>
30
 */
31
class FlightInfo
32
{
33
    /**
34
     * @var CabinId
35
     */
36
    public $cabinId;
37
38
    /**
39
     * @var CompanyIdentity[]
40
     */
41
    public $companyIdentity = [];
42
43
    /**
44
     * @var FlightDetail
45
     */
46
    public $flightDetail;
47
48
    /**
49
     * @var InclusionDetail[]
50
     */
51
    public $inclusionDetail = [];
52
53
    /**
54
     * @var ExclusionDetail[]
55
     */
56
    public $exclusionDetail = [];
57
58
    /**
59
     * @var UnitNumberDetail[]
60
     */
61
    public $unitNumberDetail = [];
62
63
    /**
64
     * FlightInfo constructor.
65
     *
66
     * @param array $airlineOptions
67
     * @param array $flightTypes
68
     * @param array $includedConnections
69
     * @param array $excludedConnections
70
     * @param int|null $connections
71
     * @param bool $noAirportChange
72
     * @param string|null $cabinCode CabinId::CABIN_*
73
     * @param string|null $cabinOption CabinId::CABINOPT_*
74
     */
75 55
    public function __construct(
76
        array $airlineOptions,
77
        array $flightTypes,
78
        array $includedConnections = [],
79
        array $excludedConnections = [],
80
        $connections = null,
81
        $noAirportChange = false,
82
        $cabinCode = null,
83
        $cabinOption = null
84
    ) {
85 55
        foreach ($airlineOptions as $qualifier => $airlines) {
86 10
            $this->companyIdentity[] = new CompanyIdentity(
87 10
                $qualifier,
88 4
                $airlines
89 4
            );
90 22
        }
91
92 55
        if (!empty($flightTypes)) {
93 10
            $this->flightDetail = new FlightDetail($flightTypes);
94 4
        }
95
96 55
        foreach ($includedConnections as $includedConnection) {
97 10
            $this->inclusionDetail[] = new InclusionDetail($includedConnection);
98 22
        }
99 55
        foreach ($excludedConnections as $excludedConnection) {
100 10
            $this->exclusionDetail[] = new ExclusionDetail($excludedConnection);
101 22
        }
102
103 55
        if (!is_null($connections)) {
104 10
            $this->unitNumberDetail[] = new UnitNumberDetail(
105 4
                $connections,
106
                UnitNumberDetail::TYPE_NUM_OF_CONNECTIONS_ALLOWED,
107 55
            );
108 5
        }
109 2
110 55
        if ($noAirportChange === true) {
111 10
            $this->unitNumberDetail[] = new UnitNumberDetail(1, UnitNumberDetail::TYPE_NO_AIRPORT_CHANGE);
112 4
        }
113 55
        if (!is_null($cabinCode) || !is_null($cabinOption)) {
114
            $this->cabinId = new CabinId($cabinCode, $cabinOption);
115
        }
116
    }
117
}
118