File "AbstractExtension.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/twig/twig/src/Extension/AbstractExtension.php
File size: 445 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Twig\Extension;
if (!defined('ABSPATH')) exit;
abstract class AbstractExtension implements ExtensionInterface
{
 public function getTokenParsers()
 {
 return [];
 }
 public function getNodeVisitors()
 {
 return [];
 }
 public function getFilters()
 {
 return [];
 }
 public function getTests()
 {
 return [];
 }
 public function getFunctions()
 {
 return [];
 }
 public function getOperators()
 {
 return [];
 }
}