Netson\L4gettext\L4gettext::getEncoding PHP Метод

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

method to fetch the set encoding
public getEncoding ( ) : string
Результат string
    public function getEncoding()
    {
        // sanity check
        if (!$this->hasEncoding()) {
            throw new EncodingNotSetException("The encoding needs to be set before calling L4gettext::getEncoding()");
        }
        // return encoding
        return $this->encoding;
    }