blob: 8750ea91b3855335a8b31f04ea56a47ea0ab6647 [file] [log] [blame]
<?php
/**
* File containing the ezcTemplateLessThanOperatorAstNode class
*
* @package Template
* @version //autogen//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @access private
*/
/**
* Represents the PHP less than operator <
*
* @package Template
* @version //autogen//
* @access private
*/
class ezcTemplateLessThanOperatorAstNode extends ezcTemplateBinaryOperatorAstNode
{
/**
* Returns a text string representing the PHP operator.
* @return string
*/
public function getOperatorPHPSymbol()
{
return '<';
}
}
?>