Test Failed
Pull Request — master (#11)
by Pavel
12:31
created
src/Object/ReviewCollection.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@
 block discarded – undo
20 20
 class ReviewCollection extends AbstractCollection
21 21
 {
22 22
 
23
-	/**
24
-	 * @var string
25
-	 */
26
-	protected $item_class = Review::class;
23
+    /**
24
+     * @var string
25
+     */
26
+    protected $item_class = Review::class;
27 27
 
28
-	/**
29
-	 * @param $item
30
-	 *
31
-	 * @return Review
32
-	 */
33
-	protected function parseItem($item): Review
34
-	{
28
+    /**
29
+     * @param $item
30
+     *
31
+     * @return Review
32
+     */
33
+    protected function parseItem($item): Review
34
+    {
35 35
 
36
-		return ($item instanceof $this->item_class) ? $item : new $this->item_class($item);
37
-	}
36
+        return ($item instanceof $this->item_class) ? $item : new $this->item_class($item);
37
+    }
38 38
 }
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
src/Fields/GoogleMapsResponseFields.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -17,43 +17,43 @@
 block discarded – undo
17 17
 class GoogleMapsResponseFields
18 18
 {
19 19
 
20
-	/**
21
-	 * @var string results
22
-	 */
23
-	const RESULTS = 'results';
24
-
25
-	/**
26
-	 * @var string result
27
-	 * @since v0.6.0
28
-	 */
29
-	const RESULT = 'result';
30
-
31
-	/**
32
-	 * @var string status
33
-	 */
34
-	const STATUS = 'status';
35
-
36
-	/**
37
-	 * @var string error_message
38
-	 */
39
-	const ERROR_MESSAGE = 'error_message';
40
-
41
-	/**
42
-	 * @var string candidates
43
-	 * @since 0.5.0
44
-	 */
45
-	const CANDIDATES = 'candidates';
46
-
47
-	/**
48
-	 * @var string html_attributions
49
-	 * @since 0.5.0
50
-	 */
51
-	const HTML_ATTRIBUTIONS = 'html_attributions';
52
-
53
-	/**
54
-	 * @var string next_page_token
55
-	 * @since 0.5.0
56
-	 */
57
-	const NEXT_PAGE_TOKEN = 'next_page_token';
20
+    /**
21
+     * @var string results
22
+     */
23
+    const RESULTS = 'results';
24
+
25
+    /**
26
+     * @var string result
27
+     * @since v0.6.0
28
+     */
29
+    const RESULT = 'result';
30
+
31
+    /**
32
+     * @var string status
33
+     */
34
+    const STATUS = 'status';
35
+
36
+    /**
37
+     * @var string error_message
38
+     */
39
+    const ERROR_MESSAGE = 'error_message';
40
+
41
+    /**
42
+     * @var string candidates
43
+     * @since 0.5.0
44
+     */
45
+    const CANDIDATES = 'candidates';
46
+
47
+    /**
48
+     * @var string html_attributions
49
+     * @since 0.5.0
50
+     */
51
+    const HTML_ATTRIBUTIONS = 'html_attributions';
52
+
53
+    /**
54
+     * @var string next_page_token
55
+     * @since 0.5.0
56
+     */
57
+    const NEXT_PAGE_TOKEN = 'next_page_token';
58 58
 
59 59
 }
60 60
\ No newline at end of file
Please login to merge, or discard this patch.
src/Fields/ReviewFields.php 1 patch
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -18,43 +18,43 @@
 block discarded – undo
18 18
 class ReviewFields
19 19
 {
20 20
 
21
-	/**
22
-	 * @var string
23
-	 */
24
-	const AUTHOR_NAME = "author_name";
25
-
26
-	/**
27
-	 * @var string
28
-	 */
29
-	const AUTHOR_URL = "author_url";
30
-
31
-	/**
32
-	 * @var string
33
-	 */
34
-	const LANGUAGE = "language";
35
-
36
-	/**
37
-	 * @var string
38
-	 */
39
-	const PROFILE_PHOTO_URL = "profile_photo_url";
40
-
41
-	/**
42
-	 * @var string
43
-	 */
44
-	const RATING = "rating";
45
-
46
-	/**
47
-	 * @var string
48
-	 */
49
-	const RELATIVE_TIME_DESCRIPTION = "relative_time_description";
50
-
51
-	/**
52
-	 * @var string
53
-	 */
54
-	const TEXT = "text";
55
-
56
-	/**
57
-	 * @var string
58
-	 */
59
-	const TIME = "time";
21
+    /**
22
+     * @var string
23
+     */
24
+    const AUTHOR_NAME = "author_name";
25
+
26
+    /**
27
+     * @var string
28
+     */
29
+    const AUTHOR_URL = "author_url";
30
+
31
+    /**
32
+     * @var string
33
+     */
34
+    const LANGUAGE = "language";
35
+
36
+    /**
37
+     * @var string
38
+     */
39
+    const PROFILE_PHOTO_URL = "profile_photo_url";
40
+
41
+    /**
42
+     * @var string
43
+     */
44
+    const RATING = "rating";
45
+
46
+    /**
47
+     * @var string
48
+     */
49
+    const RELATIVE_TIME_DESCRIPTION = "relative_time_description";
50
+
51
+    /**
52
+     * @var string
53
+     */
54
+    const TEXT = "text";
55
+
56
+    /**
57
+     * @var string
58
+     */
59
+    const TIME = "time";
60 60
 }
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
src/Enum/PlaceServicesEndpoints.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -17,23 +17,23 @@
 block discarded – undo
17 17
 class PlaceServicesEndpoints
18 18
 {
19 19
 
20
-	/**
21
-	 * @var string
22
-	 */
23
-	const FINDPLACEFROMTEXT = "findplacefromtext";
20
+    /**
21
+     * @var string
22
+     */
23
+    const FINDPLACEFROMTEXT = "findplacefromtext";
24 24
 
25
-	/**
26
-	 * @var string
27
-	 */
28
-	const NEARBYSEARCH = "nearbysearch";
25
+    /**
26
+     * @var string
27
+     */
28
+    const NEARBYSEARCH = "nearbysearch";
29 29
 
30
-	/**
31
-	 * @var string
32
-	 */
33
-	const TEXTSEARCH = "textsearch";
30
+    /**
31
+     * @var string
32
+     */
33
+    const TEXTSEARCH = "textsearch";
34 34
 
35
-	/**
36
-	 * @var string
37
-	 */
38
-	const DETAILS = "details";
35
+    /**
36
+     * @var string
37
+     */
38
+    const DETAILS = "details";
39 39
 }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.
src/Fields/GoogleMapsResultFields.php 1 patch
Indentation   +181 added lines, -181 removed lines patch added patch discarded remove patch
@@ -17,186 +17,186 @@
 block discarded – undo
17 17
 class GoogleMapsResultFields
18 18
 {
19 19
 
20
-	/**
21
-	 * @var string address_components
22
-	 */
23
-	const ADDRESS_COMPONENTS = 'address_components';
24
-
25
-	/**
26
-	 * @var string formatted_address
27
-	 */
28
-	const FORMATTED_ADDRESS = 'formatted_address';
29
-
30
-	/**
31
-	 * @var string geometry
32
-	 */
33
-	const GEOMETRY = 'geometry';
34
-
35
-	/**
36
-	 * @var string viewport
37
-	 */
38
-	const VIEWPORT = 'viewport';
39
-
40
-	/**
41
-	 * @var string place_id
42
-	 */
43
-	const PLACE_ID = 'place_id';
44
-
45
-	/**
46
-	 * @var string location_type
47
-	 */
48
-	const LOCATION_TYPE = 'location_type';
49
-
50
-	/**
51
-	 * @var string types
52
-	 */
53
-	const TYPES = 'types';
54
-
55
-	/**
56
-	 * @var string location
57
-	 */
58
-	const LOCATION = 'location';
59
-
60
-	/**
61
-	 * @var string elevation
62
-	 */
63
-	const ELEVATION = 'elevation';
64
-
65
-	/**
66
-	 * @var string resolution
67
-	 */
68
-	const RESOLUTION = 'resolution';
69
-
70
-	/**
71
-	 * @var string icon
72
-	 * @since 0.5.0
73
-	 */
74
-	const ICON = 'icon';
75
-
76
-	/**
77
-	 * @var string id
78
-	 * @since 0.5.0
79
-	 */
80
-	const ID = 'id';
81
-
82
-	/**
83
-	 * @var string name
84
-	 * @since 0.5.0
85
-	 */
86
-	const NAME = 'name';
87
-
88
-	/**
89
-	 * @var string photos
90
-	 * @since 0.5.0
91
-	 */
92
-	const PHOTOS = 'photos';
93
-
94
-	/**
95
-	 * @var string reference
96
-	 * @since 0.5.0
97
-	 */
98
-	const REFERENCE = 'reference';
99
-
100
-	/**
101
-	 * @var string vicinity
102
-	 * @since 0.5.0
103
-	 */
104
-	const VICINITY = 'vicinity';
105
-
106
-	/**
107
-	 * @var string opening_hours
108
-	 * @since 0.5.0
109
-	 */
110
-	const OPENING_HOURS = 'opening_hours';
111
-
112
-	/**
113
-	 * @var string price_level
114
-	 * @since 0.5.0
115
-	 */
116
-	const PRICE_LEVEL = 'price_level';
117
-
118
-	/**
119
-	 * @var string rating
120
-	 * @since 0.5.0
121
-	 */
122
-	const RATING = 'rating';
123
-
124
-	/**
125
-	 * @var string permanently_closed
126
-	 * @since 0.5.0
127
-	 */
128
-	const PERMANENTLY_CLOSED = 'permanently_closed';
129
-
130
-	/**
131
-	 * @var string plus_code
132
-	 * @since 0.5.0
133
-	 */
134
-	const PLUS_CODE = 'plus_code';
135
-
136
-	/**
137
-	 * @var string next_page_token
138
-	 * @since 0.5.0
139
-	 */
140
-	const NEXT_PAGE_TOKEN = 'next_page_token';
141
-
142
-	/**
143
-	 * @var string reviews
144
-	 * @since 0.6.0
145
-	 */
146
-	const REVIEWS = 'reviews';
147
-
148
-	/**
149
-	 * @var string utc_offset
150
-	 * @since 0.6.0
151
-	 */
152
-	const UTC_OFFSET = 'utc_offset';
153
-
154
-	/**
155
-	 * @var string website
156
-	 * @since 0.6.0
157
-	 */
158
-	const WEBSITE = 'website';
159
-
160
-	/**
161
-	 * @var string international_phone_number
162
-	 * @since 0.6.0
163
-	 */
164
-	const INTERNATIONAL_PHONE_NUMBER = 'international_phone_number';
165
-
166
-	/**
167
-	 * @var string formatted_phone_number
168
-	 * @since 0.6.0
169
-	 */
170
-	const FORMATTED_PHONE_NUMBER = 'formatted_phone_number';
171
-
172
-	/**
173
-	 * @var string adr_address
174
-	 * @since 0.6.0
175
-	 */
176
-	const ADR_ADDRESS = 'adr_address';
177
-
178
-	/**
179
-	 * @var string dstOffset
180
-	 * @since 0.7.0
181
-	 */
182
-	const DST_OFFSET = 'dstOffset';
183
-
184
-	/**
185
-	 * @var string rawOffset
186
-	 * @since 0.7.0
187
-	 */
188
-	const RAW_OFFSET = 'rawOffset';
189
-
190
-	/**
191
-	 * @var string timeZoneId
192
-	 * @since 0.7.0
193
-	 */
194
-	const TIMEZONE_ID = 'timeZoneId';
195
-
196
-	/**
197
-	 * @var string timeZoneName
198
-	 * @since 0.7.0
199
-	 */
200
-	const TIMEZONE_NAME = 'timeZoneName';
20
+    /**
21
+     * @var string address_components
22
+     */
23
+    const ADDRESS_COMPONENTS = 'address_components';
24
+
25
+    /**
26
+     * @var string formatted_address
27
+     */
28
+    const FORMATTED_ADDRESS = 'formatted_address';
29
+
30
+    /**
31
+     * @var string geometry
32
+     */
33
+    const GEOMETRY = 'geometry';
34
+
35
+    /**
36
+     * @var string viewport
37
+     */
38
+    const VIEWPORT = 'viewport';
39
+
40
+    /**
41
+     * @var string place_id
42
+     */
43
+    const PLACE_ID = 'place_id';
44
+
45
+    /**
46
+     * @var string location_type
47
+     */
48
+    const LOCATION_TYPE = 'location_type';
49
+
50
+    /**
51
+     * @var string types
52
+     */
53
+    const TYPES = 'types';
54
+
55
+    /**
56
+     * @var string location
57
+     */
58
+    const LOCATION = 'location';
59
+
60
+    /**
61
+     * @var string elevation
62
+     */
63
+    const ELEVATION = 'elevation';
64
+
65
+    /**
66
+     * @var string resolution
67
+     */
68
+    const RESOLUTION = 'resolution';
69
+
70
+    /**
71
+     * @var string icon
72
+     * @since 0.5.0
73
+     */
74
+    const ICON = 'icon';
75
+
76
+    /**
77
+     * @var string id
78
+     * @since 0.5.0
79
+     */
80
+    const ID = 'id';
81
+
82
+    /**
83
+     * @var string name
84
+     * @since 0.5.0
85
+     */
86
+    const NAME = 'name';
87
+
88
+    /**
89
+     * @var string photos
90
+     * @since 0.5.0
91
+     */
92
+    const PHOTOS = 'photos';
93
+
94
+    /**
95
+     * @var string reference
96
+     * @since 0.5.0
97
+     */
98
+    const REFERENCE = 'reference';
99
+
100
+    /**
101
+     * @var string vicinity
102
+     * @since 0.5.0
103
+     */
104
+    const VICINITY = 'vicinity';
105
+
106
+    /**
107
+     * @var string opening_hours
108
+     * @since 0.5.0
109
+     */
110
+    const OPENING_HOURS = 'opening_hours';
111
+
112
+    /**
113
+     * @var string price_level
114
+     * @since 0.5.0
115
+     */
116
+    const PRICE_LEVEL = 'price_level';
117
+
118
+    /**
119
+     * @var string rating
120
+     * @since 0.5.0
121
+     */
122
+    const RATING = 'rating';
123
+
124
+    /**
125
+     * @var string permanently_closed
126
+     * @since 0.5.0
127
+     */
128
+    const PERMANENTLY_CLOSED = 'permanently_closed';
129
+
130
+    /**
131
+     * @var string plus_code
132
+     * @since 0.5.0
133
+     */
134
+    const PLUS_CODE = 'plus_code';
135
+
136
+    /**
137
+     * @var string next_page_token
138
+     * @since 0.5.0
139
+     */
140
+    const NEXT_PAGE_TOKEN = 'next_page_token';
141
+
142
+    /**
143
+     * @var string reviews
144
+     * @since 0.6.0
145
+     */
146
+    const REVIEWS = 'reviews';
147
+
148
+    /**
149
+     * @var string utc_offset
150
+     * @since 0.6.0
151
+     */
152
+    const UTC_OFFSET = 'utc_offset';
153
+
154
+    /**
155
+     * @var string website
156
+     * @since 0.6.0
157
+     */
158
+    const WEBSITE = 'website';
159
+
160
+    /**
161
+     * @var string international_phone_number
162
+     * @since 0.6.0
163
+     */
164
+    const INTERNATIONAL_PHONE_NUMBER = 'international_phone_number';
165
+
166
+    /**
167
+     * @var string formatted_phone_number
168
+     * @since 0.6.0
169
+     */
170
+    const FORMATTED_PHONE_NUMBER = 'formatted_phone_number';
171
+
172
+    /**
173
+     * @var string adr_address
174
+     * @since 0.6.0
175
+     */
176
+    const ADR_ADDRESS = 'adr_address';
177
+
178
+    /**
179
+     * @var string dstOffset
180
+     * @since 0.7.0
181
+     */
182
+    const DST_OFFSET = 'dstOffset';
183
+
184
+    /**
185
+     * @var string rawOffset
186
+     * @since 0.7.0
187
+     */
188
+    const RAW_OFFSET = 'rawOffset';
189
+
190
+    /**
191
+     * @var string timeZoneId
192
+     * @since 0.7.0
193
+     */
194
+    const TIMEZONE_ID = 'timeZoneId';
195
+
196
+    /**
197
+     * @var string timeZoneName
198
+     * @since 0.7.0
199
+     */
200
+    const TIMEZONE_NAME = 'timeZoneName';
201 201
 
202 202
 }
203 203
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Result/TimeZoneResult.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -30,45 +30,45 @@
 block discarded – undo
30 30
 class TimeZoneResult extends GoogleMapsResult
31 31
 {
32 32
 
33
-	/**
34
-	 * @var int
35
-	 */
36
-	protected $dstOffset = 0;
33
+    /**
34
+     * @var int
35
+     */
36
+    protected $dstOffset = 0;
37 37
 
38
-	/**
39
-	 * @var int
40
-	 */
41
-	protected $rawOffset = 0;
38
+    /**
39
+     * @var int
40
+     */
41
+    protected $rawOffset = 0;
42 42
 
43
-	/**
44
-	 * @var string
45
-	 */
46
-	protected $timeZoneId = '';
43
+    /**
44
+     * @var string
45
+     */
46
+    protected $timeZoneId = '';
47 47
 
48
-	/**
49
-	 * @var string
50
-	 */
51
-	protected $timeZoneName = '';
48
+    /**
49
+     * @var string
50
+     */
51
+    protected $timeZoneName = '';
52 52
 
53
-	/**
54
-	 * @var array
55
-	 */
56
-	protected $typeCheck = [
57
-		GoogleMapsResultFields::DST_OFFSET    => 'int',
58
-		GoogleMapsResultFields::RAW_OFFSET    => 'int',
59
-		GoogleMapsResultFields::TIMEZONE_ID   => 'string',
60
-		GoogleMapsResultFields::TIMEZONE_NAME => 'string',
61
-	];
53
+    /**
54
+     * @var array
55
+     */
56
+    protected $typeCheck = [
57
+        GoogleMapsResultFields::DST_OFFSET    => 'int',
58
+        GoogleMapsResultFields::RAW_OFFSET    => 'int',
59
+        GoogleMapsResultFields::TIMEZONE_ID   => 'string',
60
+        GoogleMapsResultFields::TIMEZONE_NAME => 'string',
61
+    ];
62 62
 
63
-	/**
64
-	 * @param string $initial_field_name
65
-	 *
66
-	 * @return string
67
-	 */
68
-	protected function getFieldName(string $initial_field_name): string
69
-	{
63
+    /**
64
+     * @param string $initial_field_name
65
+     *
66
+     * @return string
67
+     */
68
+    protected function getFieldName(string $initial_field_name): string
69
+    {
70 70
 
71
-		return lcfirst($initial_field_name);
72
-	}
71
+        return lcfirst($initial_field_name);
72
+    }
73 73
 
74 74
 }
75 75
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/TimeZone.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -27,35 +27,35 @@
 block discarded – undo
27 27
 class TimeZone extends Api
28 28
 {
29 29
 
30
-	/**
31
-	 * @var string
32
-	 */
33
-	const SERVICE_ENDPOINT = 'timezone';
34
-
35
-	/**
36
-	 * @var string
37
-	 */
38
-	protected $result_type = TimeZoneResult::class;
39
-
40
-	/**
41
-	 * @param Location    $location
42
-	 * @param int         $timestamp
43
-	 * @param string|null $language
44
-	 *
45
-	 * @return GoogleMapsResult
46
-	 */
47
-	public function get(Location $location, int $timestamp, string $language = null): GoogleMapsResult
48
-	{
49
-
50
-		$params = [
51
-			GoogleMapsRequestFields::LOCATION => $location,
52
-			GoogleMapsRequestFields::TIMESTAMP => $timestamp,
53
-		];
54
-
55
-		if ($language) {
56
-			$params[GoogleMapsRequestFields::LANGUAGE] = $language;
57
-		}
58
-
59
-		return $this->callApi($params);
60
-	}
30
+    /**
31
+     * @var string
32
+     */
33
+    const SERVICE_ENDPOINT = 'timezone';
34
+
35
+    /**
36
+     * @var string
37
+     */
38
+    protected $result_type = TimeZoneResult::class;
39
+
40
+    /**
41
+     * @param Location    $location
42
+     * @param int         $timestamp
43
+     * @param string|null $language
44
+     *
45
+     * @return GoogleMapsResult
46
+     */
47
+    public function get(Location $location, int $timestamp, string $language = null): GoogleMapsResult
48
+    {
49
+
50
+        $params = [
51
+            GoogleMapsRequestFields::LOCATION => $location,
52
+            GoogleMapsRequestFields::TIMESTAMP => $timestamp,
53
+        ];
54
+
55
+        if ($language) {
56
+            $params[GoogleMapsRequestFields::LANGUAGE] = $language;
57
+        }
58
+
59
+        return $this->callApi($params);
60
+    }
61 61
 }
Please login to merge, or discard this patch.
src/Api/Geocoding.php 1 patch
Indentation   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -26,112 +26,112 @@
 block discarded – undo
26 26
 class Geocoding extends Api
27 27
 {
28 28
 
29
-	/**
30
-	 * The language in which to return results
31
-	 * https://developers.google.com/maps/faq#languagesupport
32
-	 *
33
-	 * @var null|string
34
-	 */
35
-	private $language = null;
29
+    /**
30
+     * The language in which to return results
31
+     * https://developers.google.com/maps/faq#languagesupport
32
+     *
33
+     * @var null|string
34
+     */
35
+    private $language = null;
36 36
 
37
-	/**
38
-	 * @var string
39
-	 */
40
-	const SERVICE_ENDPOINT = 'geocode';
37
+    /**
38
+     * @var string
39
+     */
40
+    const SERVICE_ENDPOINT = 'geocode';
41 41
 
42
-	/**
43
-	 * @var string
44
-	 */
45
-	protected $result_collection_type = GeocodingResultsCollection::class;
42
+    /**
43
+     * @var string
44
+     */
45
+    protected $result_collection_type = GeocodingResultsCollection::class;
46 46
 
47
-	/**
48
-	 * Set the language in which to return results
49
-	 *
50
-	 * @param null|string $language
51
-	 * @return self
52
-	 */
53
-	public function setLanguage(?string $language = null): self
54
-	{
55
-		$this->language = $language;
56
-		return $this;
57
-	}
47
+    /**
48
+     * Set the language in which to return results
49
+     *
50
+     * @param null|string $language
51
+     * @return self
52
+     */
53
+    public function setLanguage(?string $language = null): self
54
+    {
55
+        $this->language = $language;
56
+        return $this;
57
+    }
58 58
 
59
-	/**
60
-	 * Add language to $params list if necessary
61
-	 *
62
-	 * @param array $params
63
-	 * @return array
64
-	 * @since 0.8.0
65
-	 */
66
-	public function prepareParams(array $params): array
67
-	{
68
-		if ($this->language) {
69
-			$params[GoogleMapsRequestFields::LANGUAGE] = $this->language;
70
-		}
71
-		return $params;
72
-	}
59
+    /**
60
+     * Add language to $params list if necessary
61
+     *
62
+     * @param array $params
63
+     * @return array
64
+     * @since 0.8.0
65
+     */
66
+    public function prepareParams(array $params): array
67
+    {
68
+        if ($this->language) {
69
+            $params[GoogleMapsRequestFields::LANGUAGE] = $this->language;
70
+        }
71
+        return $params;
72
+    }
73 73
 
74
-	/**
75
-	 * Geocoding (Address Lookup)
76
-	 * 
77
-	 * @param string $literal_address
78
-	 * @param string $region
79
-	 *
80
-	 * @return GoogleMapsResultsCollection
81
-	 */
82
-	public function getByAddress(string $literal_address, ?string $region = null): GoogleMapsResultsCollection
83
-	{
84
-		$params = [
85
-			GoogleMapsRequestFields::ADDRESS => $literal_address
86
-		];
87
-		if ($region) {
88
-			$params[GoogleMapsRequestFields::REGION] = $region;
89
-		}
90
-		$params = $this->prepareParams($params);
91
-		return $this->callApi($params);
92
-	}
74
+    /**
75
+     * Geocoding (Address Lookup)
76
+     * 
77
+     * @param string $literal_address
78
+     * @param string $region
79
+     *
80
+     * @return GoogleMapsResultsCollection
81
+     */
82
+    public function getByAddress(string $literal_address, ?string $region = null): GoogleMapsResultsCollection
83
+    {
84
+        $params = [
85
+            GoogleMapsRequestFields::ADDRESS => $literal_address
86
+        ];
87
+        if ($region) {
88
+            $params[GoogleMapsRequestFields::REGION] = $region;
89
+        }
90
+        $params = $this->prepareParams($params);
91
+        return $this->callApi($params);
92
+    }
93 93
 
94
-	/**
95
-	 * ALIAS: getByLatLng
96
-	 * Geocoding (Latitude/Longitude Lookup)
97
-	 * 
98
-	 * @param LatLng $latlng
99
-	 *
100
-	 * @return GoogleMapsResultsCollection
101
-	 * @deprecated 0.8.0
102
-	 */
103
-	public function getReverse(LatLng $latlng): GoogleMapsResultsCollection
104
-	{
105
-		return $this->getByLatLng($latlng);
106
-	}
94
+    /**
95
+     * ALIAS: getByLatLng
96
+     * Geocoding (Latitude/Longitude Lookup)
97
+     * 
98
+     * @param LatLng $latlng
99
+     *
100
+     * @return GoogleMapsResultsCollection
101
+     * @deprecated 0.8.0
102
+     */
103
+    public function getReverse(LatLng $latlng): GoogleMapsResultsCollection
104
+    {
105
+        return $this->getByLatLng($latlng);
106
+    }
107 107
 
108
-	/**
109
-	 * Geocoding (Latitude/Longitude Lookup)
110
-	 * 
111
-	 * @param LatLng $latlng
112
-	 *
113
-	 * @return GoogleMapsResultsCollection
114
-	 * @since 0.8.0
115
-	 */
116
-	public function getByLatLng(LatLng $latlng): GoogleMapsResultsCollection
117
-	{
118
-		$params = $this->prepareParams([
119
-			GoogleMapsRequestFields::LATLNG => $latlng
120
-		]);
121
-		return $this->callApi($params);
122
-	}
108
+    /**
109
+     * Geocoding (Latitude/Longitude Lookup)
110
+     * 
111
+     * @param LatLng $latlng
112
+     *
113
+     * @return GoogleMapsResultsCollection
114
+     * @since 0.8.0
115
+     */
116
+    public function getByLatLng(LatLng $latlng): GoogleMapsResultsCollection
117
+    {
118
+        $params = $this->prepareParams([
119
+            GoogleMapsRequestFields::LATLNG => $latlng
120
+        ]);
121
+        return $this->callApi($params);
122
+    }
123 123
 
124
-	/**
125
-	 * Retrieving an Address for a Place ID
126
-	 * 
127
-	 * @param string $place_id
128
-	 *
129
-	 * @return GoogleMapsResultsCollection
130
-	 */
131
-	public function getByPlaceId(string $place_id): GoogleMapsResultsCollection
132
-	{
133
-		return $this->callApi([
134
-			GoogleMapsRequestFields::PLACE_ID => $place_id
135
-		]);
136
-	}
124
+    /**
125
+     * Retrieving an Address for a Place ID
126
+     * 
127
+     * @param string $place_id
128
+     *
129
+     * @return GoogleMapsResultsCollection
130
+     */
131
+    public function getByPlaceId(string $place_id): GoogleMapsResultsCollection
132
+    {
133
+        return $this->callApi([
134
+            GoogleMapsRequestFields::PLACE_ID => $place_id
135
+        ]);
136
+    }
137 137
 }
Please login to merge, or discard this patch.
src/Fields/GoogleMapsRequestFields.php 1 patch
Indentation   +171 added lines, -171 removed lines patch added patch discarded remove patch
@@ -18,175 +18,175 @@
 block discarded – undo
18 18
 class GoogleMapsRequestFields
19 19
 {
20 20
 
21
-	/**
22
-	 * @var string key
23
-	 */
24
-	const KEY = 'key';
25
-
26
-	/**
27
-	 * @var string sensor
28
-	 */
29
-	const SENSOR = 'sensor';
30
-
31
-	/**
32
-	 * @var string latlng
33
-	 */
34
-	const LATLNG = 'latlng';
35
-
36
-	/**
37
-	 * @var string address
38
-	 */
39
-	const ADDRESS = 'address';
40
-
41
-	/**
42
-	 * @var string place_id
43
-	 */
44
-	const PLACE_ID = 'place_id';
45
-
46
-	/**
47
-	 * @var string location
48
-	 * @since 0.5.0
49
-	 */
50
-	const LOCATION = 'location';
51
-
52
-	/**
53
-	 * @var string locations
54
-	 */
55
-	const LOCATIONS = 'locations';
56
-
57
-	/**
58
-	 * @var string path
59
-	 */
60
-	const PATH = 'path';
61
-
62
-	/**
63
-	 * @var string samples
64
-	 */
65
-	const SAMPLES = 'samples';
66
-
67
-	/**
68
-	 * @var string input
69
-	 * @since 0.5.0
70
-	 */
71
-	const INPUT = 'input';
72
-
73
-	/**
74
-	 * @var string inputtype
75
-	 * @since 0.5.0
76
-	 */
77
-	const INPUTTYPE = 'inputtype';
78
-
79
-	/**
80
-	 * @var string language
81
-	 * @since 0.5.0
82
-	 */
83
-	const LANGUAGE = 'language';
84
-
85
-	/**
86
-	 * @var string fields
87
-	 * @since 0.5.0
88
-	 */
89
-	const FIELDS = 'fields';
90
-
91
-	/**
92
-	 * @var string locationbias
93
-	 * @since 0.5.0
94
-	 */
95
-	const LOCATIONBIAS = 'locationbias';
96
-
97
-	/**
98
-	 * @var string radius
99
-	 * @since 0.5.0
100
-	 */
101
-	const RADIUS = 'radius';
102
-
103
-	/**
104
-	 * @var string rankby
105
-	 * @since 0.5.0
106
-	 */
107
-	const RANKBY = 'rankby';
108
-
109
-	/**
110
-	 * @var string keyword
111
-	 * @since 0.5.0
112
-	 */
113
-	const KEYWORD = 'keyword';
114
-
115
-	/**
116
-	 * @var string minprice
117
-	 * @since 0.5.0
118
-	 */
119
-	const MINPRICE = 'minprice';
120
-
121
-	/**
122
-	 * @var string maxprice
123
-	 * @since 0.5.0
124
-	 */
125
-	const MAXPRICE = 'maxprice';
126
-
127
-	/**
128
-	 * @var string name
129
-	 * @since 0.5.0
130
-	 */
131
-	const NAME = 'name';
132
-
133
-	/**
134
-	 * @var string opennow
135
-	 * @since 0.5.0
136
-	 */
137
-	const OPENNOW = 'opennow';
138
-
139
-	/**
140
-	 * @var string pagetoken
141
-	 * @since 0.5.0
142
-	 */
143
-	const PAGETOKEN = 'pagetoken';
144
-
145
-	/**
146
-	 * @var string type
147
-	 * @since 0.5.0
148
-	 */
149
-	const TYPE = 'type';
150
-
151
-	/**
152
-	 * @var string query
153
-	 * @since 0.5.0
154
-	 */
155
-	const QUERY = 'query';
156
-
157
-	/**
158
-	 * @var string next_page_token
159
-	 * @since 0.5.0
160
-	 */
161
-	const NEXT_PAGE_TOKEN = 'next_page_token';
162
-
163
-	/**
164
-	 * @var string photoreference
165
-	 * @since 0.6.0
166
-	 */
167
-	const PHOTOREFERENCE = 'photoreference';
168
-
169
-	/**
170
-	 * @var string maxwidth
171
-	 * @since 0.6.0
172
-	 */
173
-	const MAXWIDTH = 'maxwidth';
174
-
175
-	/**
176
-	 * @var string maxheight
177
-	 * @since 0.6.0
178
-	 */
179
-	const MAXHEIGHT = 'maxheight';
180
-
181
-	/**
182
-	 * @var string timestamp
183
-	 * @since 0.7.0
184
-	 */
185
-	const TIMESTAMP = 'timestamp';
186
-
187
-	/**
188
-	 * @var string region
189
-	 * @since 0.8.0
190
-	 */
191
-	const REGION = 'region';
21
+    /**
22
+     * @var string key
23
+     */
24
+    const KEY = 'key';
25
+
26
+    /**
27
+     * @var string sensor
28
+     */
29
+    const SENSOR = 'sensor';
30
+
31
+    /**
32
+     * @var string latlng
33
+     */
34
+    const LATLNG = 'latlng';
35
+
36
+    /**
37
+     * @var string address
38
+     */
39
+    const ADDRESS = 'address';
40
+
41
+    /**
42
+     * @var string place_id
43
+     */
44
+    const PLACE_ID = 'place_id';
45
+
46
+    /**
47
+     * @var string location
48
+     * @since 0.5.0
49
+     */
50
+    const LOCATION = 'location';
51
+
52
+    /**
53
+     * @var string locations
54
+     */
55
+    const LOCATIONS = 'locations';
56
+
57
+    /**
58
+     * @var string path
59
+     */
60
+    const PATH = 'path';
61
+
62
+    /**
63
+     * @var string samples
64
+     */
65
+    const SAMPLES = 'samples';
66
+
67
+    /**
68
+     * @var string input
69
+     * @since 0.5.0
70
+     */
71
+    const INPUT = 'input';
72
+
73
+    /**
74
+     * @var string inputtype
75
+     * @since 0.5.0
76
+     */
77
+    const INPUTTYPE = 'inputtype';
78
+
79
+    /**
80
+     * @var string language
81
+     * @since 0.5.0
82
+     */
83
+    const LANGUAGE = 'language';
84
+
85
+    /**
86
+     * @var string fields
87
+     * @since 0.5.0
88
+     */
89
+    const FIELDS = 'fields';
90
+
91
+    /**
92
+     * @var string locationbias
93
+     * @since 0.5.0
94
+     */
95
+    const LOCATIONBIAS = 'locationbias';
96
+
97
+    /**
98
+     * @var string radius
99
+     * @since 0.5.0
100
+     */
101
+    const RADIUS = 'radius';
102
+
103
+    /**
104
+     * @var string rankby
105
+     * @since 0.5.0
106
+     */
107
+    const RANKBY = 'rankby';
108
+
109
+    /**
110
+     * @var string keyword
111
+     * @since 0.5.0
112
+     */
113
+    const KEYWORD = 'keyword';
114
+
115
+    /**
116
+     * @var string minprice
117
+     * @since 0.5.0
118
+     */
119
+    const MINPRICE = 'minprice';
120
+
121
+    /**
122
+     * @var string maxprice
123
+     * @since 0.5.0
124
+     */
125
+    const MAXPRICE = 'maxprice';
126
+
127
+    /**
128
+     * @var string name
129
+     * @since 0.5.0
130
+     */
131
+    const NAME = 'name';
132
+
133
+    /**
134
+     * @var string opennow
135
+     * @since 0.5.0
136
+     */
137
+    const OPENNOW = 'opennow';
138
+
139
+    /**
140
+     * @var string pagetoken
141
+     * @since 0.5.0
142
+     */
143
+    const PAGETOKEN = 'pagetoken';
144
+
145
+    /**
146
+     * @var string type
147
+     * @since 0.5.0
148
+     */
149
+    const TYPE = 'type';
150
+
151
+    /**
152
+     * @var string query
153
+     * @since 0.5.0
154
+     */
155
+    const QUERY = 'query';
156
+
157
+    /**
158
+     * @var string next_page_token
159
+     * @since 0.5.0
160
+     */
161
+    const NEXT_PAGE_TOKEN = 'next_page_token';
162
+
163
+    /**
164
+     * @var string photoreference
165
+     * @since 0.6.0
166
+     */
167
+    const PHOTOREFERENCE = 'photoreference';
168
+
169
+    /**
170
+     * @var string maxwidth
171
+     * @since 0.6.0
172
+     */
173
+    const MAXWIDTH = 'maxwidth';
174
+
175
+    /**
176
+     * @var string maxheight
177
+     * @since 0.6.0
178
+     */
179
+    const MAXHEIGHT = 'maxheight';
180
+
181
+    /**
182
+     * @var string timestamp
183
+     * @since 0.7.0
184
+     */
185
+    const TIMESTAMP = 'timestamp';
186
+
187
+    /**
188
+     * @var string region
189
+     * @since 0.8.0
190
+     */
191
+    const REGION = 'region';
192 192
 }
Please login to merge, or discard this patch.