Prado\Exceptions\TErrorHandler::getErrorTemplatePath PHP Méthode

getErrorTemplatePath() public méthode

public getErrorTemplatePath ( ) : string
Résultat string the directory containing error template files.
    public function getErrorTemplatePath()
    {
        if ($this->_templatePath === null) {
            $this->_templatePath = Prado::getFrameworkPath() . '/Exceptions/templates';
        }
        return $this->_templatePath;
    }