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