| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class Location implements ValueObjectInterface |
||
| 9 | { |
||
| 10 | public const MULTIPLE_AIRPORT_TRUE = true; |
||
| 11 | public const MULTIPLE_AIRPORT_FALSE = false; |
||
| 12 | |||
| 13 | private $locationCode; |
||
| 14 | private $multiAirportCityInd; |
||
| 15 | |||
| 16 | public function __construct(string $locationCode, bool $multiAirportCityInd) |
||
| 20 | } |
||
| 21 | |||
| 22 | private function changeLocationCode(string $locationCode) : void |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getValue() : array |
||
| 42 |