MenaraSolutions\Geographer\Divisible::getName PHP Method

getName() public method

Best effort name
public getName ( string $locale = null ) : string
$locale string
return string
    public function getName($locale = null)
    {
        if ($locale) {
            $this->setLocale($locale);
        }
        return $this->manager->expectsLongNames() ? $this->getLongName() : $this->getShortName();
    }