Completed
Push — master ( f6acde...7e6a05 )
by mains
02:40
created
php/Location.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@  discard block
 block discarded – undo
13 13
         return $this->cityName;
14 14
     }
15 15
 
16
+    /**
17
+     * @param string $cityName
18
+     */
16 19
     public function setCityName($cityName)
17 20
     {
18 21
         $this->cityName = $cityName;
@@ -23,6 +26,9 @@  discard block
 block discarded – undo
23 26
         return $this->lat;
24 27
     }
25 28
 
29
+    /**
30
+     * @param double $lat
31
+     */
26 32
     public function setLat($lat)
27 33
     {
28 34
         $this->lat = $lat;
@@ -33,6 +39,9 @@  discard block
 block discarded – undo
33 39
         return $this->lng;
34 40
     }
35 41
 
42
+    /**
43
+     * @param double $lng
44
+     */
36 45
     public function setLng($lng)
37 46
     {
38 47
         $this->lng = $lng;
Please login to merge, or discard this patch.