blob: bee7b7a021477923cc28e75268e493938020961c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Andrew Crites <explosion-pills@aysites.com>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id$
* @link http://phptal.org/
*/
/**
* Interface for template keywords
*
* @package PHPTAL
* @subpackage Keywords
*/
interface PHPTAL_Keywords extends Countable
{
public function __toString();
}
?>
|