Example #1
0
 /**
  * Constructor
  *
  * Just wraps the HTMLOutputter constructor.
  *
  * @param string  $output URI to output to, default = stdout
  * @param boolean $indent Whether to indent output, default true
  *
  * @see XMLOutputter::__construct
  * @see HTMLOutputter::__construct
  */
 function __construct($output = 'php://output', $indent = null)
 {
     parent::__construct($output, $indent);
 }