Files
Twig/lib/Twig/FilterInterface.php
T
2010-05-26 11:26:38 +02:00

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();
}