blob: 49522feffbfb5c13c4bbfd41b5a7ff2512ecb707 [file] [log] [blame]
<?php
/**
* File containing the ezcTemplateInstanceofOperatorAstNode 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 instanceof operator instanceof
*
* @package Template
* @version //autogen//
* @access private
*/
class ezcTemplateInstanceofOperatorAstNode extends ezcTemplateBinaryOperatorAstNode
{
/**
* Returns a text string representing the PHP operator.
* @return string
*/
public function getOperatorPHPSymbol()
{
return 'instanceof';
}
}
?>