Newscoop\Service\Implementation\ThemeServiceLocalFileSystem::getErrorHandler PHP Méthode

getErrorHandler() protected méthode

Provides the error handler.
protected getErrorHandler ( ) : Newscoop\Service\IErrorHandler
Résultat Newscoop\Service\IErrorHandler The error handler to be used.
    protected function getErrorHandler()
    {
        if ($this->errorHandler === NULL) {
            $this->errorHandler = $this->getResourceId()->getService(IErrorHandler::NAME);
        }
        return $this->errorHandler;
    }