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