Ejemplo n.º 1
0
 /**
  * re-indent a block of text
  *
  * with C/C++ we need to make sure that preporcessor
  * directives always start on the first column
  *
  * @access public
  * @param  int    number of leading indent spaces
  * @param  string text to reindent
  * @return string indented text
  */
 function indent($level, $text)
 {
     $result = parent::indent($level, $text);
     return preg_replace('/^\\s+#/m', '#', $result);
 }