Geocoder\Provider\Mapzen::guessSubLocality PHP Method

guessSubLocality() protected method

protected guessSubLocality ( array $components ) : null | string
$components array
return null | string
    protected function guessSubLocality(array $components)
    {
        $subLocalityKeys = array('neighbourhood', 'city_district');
        return $this->guessBestComponent($components, $subLocalityKeys);
    }