Parcourir la source

Erreur 500 : Argument 1 passed to Geocoder\Query\GeocodeQuery::create() must be of the type string, null given

develop
Guillaume il y a 2 ans
Parent
révision
f9d9fa8f75
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. +5
    -1
      Component/CitiesComponent.php

+ 5
- 1
Component/CitiesComponent.php Voir le fichier

@@ -85,7 +85,11 @@ class CitiesComponent

public function callAddressApi($query)
{
$provider = $this->getGeocoderProvider() ;;
if(is_null($query)) {
$query = '';
}

$provider = $this->getGeocoderProvider() ;
$query = GeocodeQuery::create($query)->withData('type', 'housenumber');
$results = $provider->geocodeQuery($query);
$resultsToReturn = array();

Chargement…
Annuler
Enregistrer