Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

AbstractExtension.php

Same filename in this branch
  1. 11.1.x vendor/symfony/css-selector/XPath/Extension/AbstractExtension.php
  2. 11.1.x vendor/symfony/dependency-injection/Extension/AbstractExtension.php

Namespace

Twig\Extension

File

vendor/twig/twig/src/Extension/AbstractExtension.php

View source
<?php


/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Twig\Extension;

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 [
            [],
            [],
        ];
    }

}

Classes

Title Deprecated Summary
AbstractExtension
RSS feed
Powered by Drupal