Netson\L4gettext\L4gettext::getLocale PHP Méthode

getLocale() public méthode

method to fetch the set locale
public getLocale ( ) : string
Résultat string
    public function getLocale()
    {
        // sanity check
        if (!$this->hasLocale()) {
            throw new LocaleNotSetException("The locale needs to be set before calling L4gettext::getLocale()");
        }
        // return locale
        return $this->locale;
    }