Pelzini

This is the code documentation for the Pelzini project

class Outputter

The top-level class for all outputters

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-26
**/
class NewClassName extends Outputter {
    
    /**
    * Does the actual outputting of the file objects (and their sub-objects)
    **/
    public function output (array $parser_items, Config $config) {
        // Method code goes here
    }
    
}
?>