Pelzini

This is the code documentation for the Pelzini project

class DebugOutputter

Outputs the tree to the screen

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-26
**/
class NewClassName extends DebugOutputter {
    
    /**
    * Outputs the entire tree to the screen
    **/
    public function output ($files, Config $config) {
        // Method code goes here
    }
    
}
?>