element = null; // removed, not needed $this->startBracket = '{'; $this->endBracket = '}'; $this->expressionRoot = null; $this->isNestingBlock = false; } public function getTreeProperties() { return array( 'startBracket' => $this->startBracket, 'endBracket' => $this->endBracket, 'expressionRoot' => $this->expressionRoot ); } /** * Returns true since output expression block elements can always be children of blocks. * * @return true */ /* public function canBeChildOf( ezcTemplateBlockTstNode $block ) { // Output expression block elements can always be child of blocks return true; } */ /** * @inheritdocs * Returns the column of the starting cursor. */ public function minimumWhitespaceColumn() { return $this->startCursor->column; } } ?>