Skip to content

Commit ceea9d0

Browse files
committed
AddressGelocation value object is now serializable
1 parent 9a68d68 commit ceea9d0

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

Geolocation/AddressGeolocation.php

+23-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @author Olivier Chauvel <[email protected]>
1616
*/
17-
class AddressGeolocation
17+
class AddressGeolocation implements \Serializable
1818
{
1919
private $address;
2020
private $latitude;
@@ -55,4 +55,26 @@ public function getCountry()
5555
{
5656
return $this->country;
5757
}
58+
59+
public function serialize()
60+
{
61+
return serialize(array(
62+
'address' => $this->address,
63+
'latitude' => $this->latitude,
64+
'longitude' => $this->longitude,
65+
'locality' => $this->locality,
66+
'country' => $this->country
67+
));
68+
}
69+
70+
public function unserialize($serialized)
71+
{
72+
$data = unserialize($serialized);
73+
74+
$this->address = $data['address'] ?: null;
75+
$this->latitude = $data['latitude'] ?: null;
76+
$this->longitude = $data['longitude'] ?: null;
77+
$this->locality = $data['locality'] ?: null;
78+
$this->country = $data['country'] ?: null;
79+
}
5880
}

0 commit comments

Comments
 (0)