Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | class ExclusionDetail |
||
32 | { |
||
33 | const IDENT_EXCLUDED = 'X'; |
||
34 | |||
35 | const QUAL_AIRPORT = 'A'; |
||
36 | const QUAL_CITY = 'C'; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | public $exclusionIdentifier; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | public $locationId; |
||
47 | |||
48 | /** |
||
49 | * self::QUAL_* |
||
50 | * |
||
51 | * @var string |
||
52 | */ |
||
53 | public $airportCityQualifier; |
||
54 | |||
55 | /** |
||
56 | * ExclusionDetail constructor. |
||
57 | * |
||
58 | * @param string $locationId |
||
59 | * @param string $exclusionIdentifier |
||
60 | */ |
||
61 | 10 | public function __construct($locationId, $exclusionIdentifier = self::IDENT_EXCLUDED) |
|
67 |