Completed
Push — master ( 53f2a7...4c5c4c )
by Ori
02:27
created
src/Fields/FieldsFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      * @param $val
76 76
      * @param null $descriptor
77 77
      *
78
-     * @return mixed
78
+     * @return BaseField
79 79
      *
80 80
      * @throws FieldValidationException
81 81
      */
Please login to merge, or discard this patch.
src/Fields/GeopointField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     protected function getNativeGeopoint($arr)
52 52
     {
53 53
         list($lon, $lat) = $arr;
54
-        $lon = (int) $lon;
55
-        $lat = (int) $lat;
54
+        $lon = (int)$lon;
55
+        $lat = (int)$lat;
56 56
         if (
57 57
             $lon > 180 || $lon < -180
58 58
             || $lat > 90 or $lat < -90
Please login to merge, or discard this patch.