mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 11:27:00 +00:00
23 lines
433 B
PHP
23 lines
433 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) 2010 Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
* Represents a template filter.
|
|
*
|
|
* @package twig
|
|
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
* @version SVN: $Id$
|
|
*/
|
|
interface Twig_FilterInterface
|
|
{
|
|
public function compile();
|
|
}
|