File: //proc/self/cwd/wp-content/plugins/cornerstone/includes/integration/Twig/src/StringLoader.php
<?php
// https://github.com/shapecode/twig-string-loader/blob/master/src/Twig/Loader/StringLoader.php
namespace Cornerstone\TwigIntegration;
use Twig\Error\LoaderError;
use Twig\Loader\LoaderInterface;
use Twig\Source;
use function md5;
use function preg_match;
use function sprintf;
class StringLoader implements LoaderInterface
{
public function getSourceContext(string $name): Source
{
if (! $this->exists($name)) {
throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
}
return new Source($name, $name);
}
public function getCacheKey(string $name): string
{
if (! $this->exists($name)) {
throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
}
return md5($name);
}
public function isFresh(string $name, int $time): bool
{
if (! $this->exists($name)) {
throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
}
return true;
}
/** @phpstan-param string $name */
public function exists(string $name): bool
{
return true;
}
}