File "TokenParserInterface.php"

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

<?php
namespace MailPoetVendor\Twig\TokenParser;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Twig\Error\SyntaxError;
use MailPoetVendor\Twig\Node\Node;
use MailPoetVendor\Twig\Parser;
use MailPoetVendor\Twig\Token;
interface TokenParserInterface
{
 public function setParser(Parser $parser) : void;
 public function parse(Token $token);
 public function getTag();
}