1 | <?php |
||
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 | */ |
||
73 | 20 | public function __construct(array $airlineOptions, array $flightTypes, array $includedConnections = [], array $excludedConnections = [], $connections = null, $noAirportChange = false) |
|
101 | } |
||
102 |
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.