Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | class RefundedItinerary |
||
34 | { |
||
35 | /** |
||
36 | * @var AirlineCodeRfndItinerary |
||
37 | */ |
||
38 | public $airlineCodeRfndItinerary; |
||
39 | |||
40 | /** |
||
41 | * @var OriginDestinationRfndItinerary |
||
42 | */ |
||
43 | public $originDestinationRfndItinerary; |
||
44 | |||
45 | /** |
||
46 | * RefundedItinerary constructor. |
||
47 | * |
||
48 | * @param RefundItinOpt $opt |
||
49 | */ |
||
50 | 10 | public function __construct(RefundItinOpt $opt) |
|
60 |