Completed
Push — master ( e055ad...6c59a0 )
by Mario
10:02
created
lib/API/Value/Parameter/Input/DaysCount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function getGetParameterValue(): string
38 38
     {
39
-        return (string) $this->count;
39
+        return (string)$this->count;
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/CityCount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function getGetParameterValue(): string
30 30
     {
31
-        return (string) $this->cnt;
31
+        return (string)$this->cnt;
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/GeographicCoordinates.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
      */
52 52
     public function getUriParameterValue(): string
53 53
     {
54
-        return (string) $this->latitude->getLatitude() .
54
+        return (string)$this->latitude->getLatitude() .
55 55
             ',' .
56
-            (string) $this->longitude->getLongitude();
56
+            (string)$this->longitude->getLongitude();
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/Longitude.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function getGetParameterValue(): string
42 42
     {
43
-        return (string) $this->longitude;
43
+        return (string)$this->longitude;
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/ZipCode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@
 block discarded – undo
36 36
     public function getGetParameterValue(): string
37 37
     {
38 38
         if (null === $this->countryCode) {
39
-            return (string) $this->zip;
39
+            return (string)$this->zip;
40 40
         }
41 41
 
42
-        return (string) $this->zip . ',' . $this->countryCode;
42
+        return (string)$this->zip . ',' . $this->countryCode;
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/Latitude.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function getGetParameterValue(): string
42 42
     {
43
-        return (string) $this->latitude;
43
+        return (string)$this->latitude;
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/CityId.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function getGetParameterValue(): string
38 38
     {
39
-        return (string) $this->cityId;
39
+        return (string)$this->cityId;
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
lib/API/Value/Parameter/Input/BoundingBox.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,11 +56,11 @@
 block discarded – undo
56 56
      */
57 57
     public function getGetParameterValue(): string
58 58
     {
59
-        return (string) $this->longitudeLeft
60
-            . ',' . (string) $this->latitudeBottom
61
-            . ',' . (string) $this->longitudeRight
62
-            . ',' . (string) $this->latitudeTop
63
-            . ',' . (string) $this->zoom;
59
+        return (string)$this->longitudeLeft
60
+            . ',' . (string)$this->latitudeBottom
61
+            . ',' . (string)$this->longitudeRight
62
+            . ',' . (string)$this->latitudeTop
63
+            . ',' . (string)$this->zoom;
64 64
     }
65 65
 
66 66
     /**
Please login to merge, or discard this patch.