| 1 | <?php |
||
| 24 | final class Location implements JsonSerializable |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $location; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param string $location |
||
| 33 | */ |
||
| 34 | public function __construct($location) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param Location $otherLocation |
||
| 45 | * @return bool |
||
| 46 | */ |
||
| 47 | public function equals(Location $otherLocation) |
||
| 51 | |||
| 52 | public function jsonSerialize() |
||
| 56 | |||
| 57 | public function __toString() |
||
| 61 | } |
||
| 62 |