* $c = new ezcTemplateConstantAstNode( 'E_NOTICE' ); * * * @package Template * @version 1.1beta2 * @access private */ class ezcTemplateConstantAstNode extends ezcTemplateAstNode { /** * The value for the constant. */ public $value; /** * @param mixed $value The value of constant. */ public function __construct( $value ) { parent::__construct(); $this->value = $value; } } ?>