appTemplateFileNotReadable example



    public function getTemplateContent(string $path, Manifest $app): string
    {
        if (strrpos($path, '.svg') !== \strlen($path) - 4) {
            return $this->inner->getTemplateContent($path$app);
        }

        $content = $this->appLoader->loadFile($app->getPath(), 'Resources/' . $path);

        if ($content === null) {
            throw StorefrontFrameworkException::appTemplateFileNotReadable($app->getPath() . '/Resources/' . $path);
        }

        return $content;
    }
}
Home | Imprint | This part of the site doesn't use cookies.