Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
60 | public function __construct(FlightInfo $flightInfo) |
||
61 | { |
||
62 | $this->flightDate = new FlightDate($flightInfo->departureDate); |
||
63 | $this->boardPointDetails = new PointDetails($flightInfo->departure); |
||
64 | $this->offpointDetails = new PointDetails($flightInfo->arrival); |
||
65 | $this->companyDetails = new CompanyDetails($flightInfo->airline); |
||
66 | $this->flightIdentification = new FlightIdentification( |
||
67 | $flightInfo->flightNumber, |
||
68 | $flightInfo->bookingClass |
||
69 | ); |
||
70 | } |
||
71 | } |
||
72 |