$this->children ); } /** * @inheritdocs * Returns the column of the starting cursor. */ public function minimumWhitespaceColumn() { return $this->startCursor->column; } /** * @inheritdocs * Trims away ending whitespace for all sub-blocks, the trimming of the * first text block is not done since this is a program element and not a * standard block element. */ public function trimLine( ezcTemplateWhitespaceRemoval $removal ) { if ( count( $this->children ) == 0 ) return; // Tell the removal object to trim text blocks after the current block // and after all sub-blocks. $removal->trimBlockLines( $this, $this->children ); } } ?>