Pelzini

This is the code documentation for the Pelzini project

class Config

Stores the processor configuration

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-25
**/
class NewClassName extends Config {
    
    public function getOutputters () {
        // Method code goes here
    }
    
    public function getBaseDirectory () {
        // Method code goes here
    }
    
    public function getExcludeDirectories () {
        // Method code goes here
    }
    
    public function getDocsDirectory () {
        // Method code goes here
    }
    
    public function getProjectCode () {
        // Method code goes here
    }
    
    public function getTransformers () {
        // Method code goes here
    }
    
    public function getLicenseText () {
        // Method code goes here
    }
    
    public function getProjectName () {
        // Method code goes here
    }
    
    /**
    * If no outputters have been specified, load the common &quot;database.config.php&quot; file
    * and use the settings in there to create one
    **/
    private function loadSharedDatabaseConfig () {
        // Method code goes here
    }
    
    /**
    * Load and validate a config file
    **/
    public function load (string $filename) {
        // Method code goes here
    }
    
}
?>