* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License * @version SVN: $Id$ * @link http://phptal.org/ */ /** * Representation of the template 'default' keyword * * @package PHPTAL * @subpackage Keywords */ class PHPTAL_DefaultKeyword implements Countable { public function __toString() { return "''"; } public function count() { return 1; } public function jsonSerialize() { return new stdClass; } } ?>