MenaraSolutions\Geographer\Divisible::getName PHP Метод

getName() публичный Метод

Best effort name
public getName ( string $locale = null ) : string
$locale string
Результат string
    public function getName($locale = null)
    {
        if ($locale) {
            $this->setLocale($locale);
        }
        return $this->manager->expectsLongNames() ? $this->getLongName() : $this->getShortName();
    }