File "LoaderInterface.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/twig/twig/src/Loader/LoaderInterface.php
File size: 388 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Twig\Loader;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Error\LoaderError;
use MailPoetVendor\Twig\Source;
interface LoaderInterface
{
 public function getSourceContext(string $name) : Source;
 public function getCacheKey(string $name) : string;
 public function isFresh(string $name, int $time) : bool;
 public function exists(string $name);
}