Rename DI::httpRequest() into DI::httpClient()

This commit is contained in:
Philipp 2021-08-25 21:54:54 +02:00
parent 9c266e59cf
commit adada10eb6
No known key found for this signature in database
GPG key ID: 9A28B7D4FF5667BD
19 changed files with 25 additions and 25 deletions

View file

@ -119,7 +119,7 @@ function openstreetmap_get_coordinates($a, &$b)
$j = DI::cache()->get($cachekey);
if (is_null($j)) {
$curlResult = DI::httpRequest()->get($nomserver . $args);
$curlResult = DI::httpClient()->get($nomserver . $args);
if ($curlResult->isSuccess()) {
$j = json_decode($curlResult->getBody(), true);
DI::cache()->set($cachekey, $j, Duration::MONTH);