Geocoder\Provider\OpenCage::guessLocality PHP Метод

guessLocality() защищенный Метод

protected guessLocality ( array $components ) : null | string
$components array
Результат null | string
    protected function guessLocality(array $components)
    {
        $localityKeys = array('city', 'town', 'village', 'hamlet');
        return $this->guessBestComponent($components, $localityKeys);
    }