@@ -168,47 +168,47 @@ protected function newReader(string $path): Reader
168168 }
169169
170170 /**
171- * Returns true / false if the MaxMind web service is enabled.
171+ * Determine if the MaxMind web service is enabled.
172172 */
173173 protected function isWebServiceEnabled (): bool
174174 {
175175 return (bool ) config ('location.maxmind.web.enabled ' , false );
176176 }
177177
178178 /**
179- * Returns the configured MaxMind web user ID.
179+ * Get the configured MaxMind web user ID.
180180 */
181181 protected function getUserId (): string |int
182182 {
183183 return config ('location.maxmind.web.user_id ' );
184184 }
185185
186186 /**
187- * Returns the configured MaxMind web license key.
187+ * Get the configured MaxMind web license key.
188188 */
189189 protected function getLicenseKey (): string
190190 {
191191 return config ('location.maxmind.license_key ' , config ('location.maxmind.web.license_key ' ));
192192 }
193193
194194 /**
195- * Returns the configured MaxMind web option array.
195+ * Get the configured MaxMind web option array.
196196 */
197197 protected function getOptions (): array
198198 {
199199 return config ('location.maxmind.web.options ' , []);
200200 }
201201
202202 /**
203- * Returns the configured MaxMind web locales array.
203+ * Get the configured MaxMind web locales array.
204204 */
205205 protected function getLocales (): array
206206 {
207207 return config ('location.maxmind.web.locales ' , ['en ' ]);
208208 }
209209
210210 /**
211- * Returns the MaxMind database file path.
211+ * Get the MaxMind database file path.
212212 */
213213 protected function getDatabasePath (): string
214214 {
@@ -227,7 +227,7 @@ protected function getDatabaseUrl(): string
227227 }
228228
229229 /**
230- * Returns the MaxMind location type.
230+ * Get the MaxMind location type.
231231 */
232232 protected function getLocationType (): string
233233 {
0 commit comments