Netson\L4gettext\L4gettext::getLocale PHP Method

getLocale() public method

method to fetch the set locale
public getLocale ( ) : string
return 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;
    }