File tree 1 file changed +23
-1
lines changed
1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 14
14
/**
15
15
* @author Olivier Chauvel <[email protected] >
16
16
*/
17
- class AddressGeolocation
17
+ class AddressGeolocation implements \Serializable
18
18
{
19
19
private $ address ;
20
20
private $ latitude ;
@@ -55,4 +55,26 @@ public function getCountry()
55
55
{
56
56
return $ this ->country ;
57
57
}
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
+ }
58
80
}
You can’t perform that action at this time.
0 commit comments