Pelzini

This is the code documentation for the Pelzini project

class PHPCodeRenderer

Does code rendering for PHP

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-07-27
**/
class NewClassName extends PHPCodeRenderer {
    
    /**
    * Returns PHP code which can be used for extending the specified class
    **/
    public function drawClassExtends ($class_id) {
        // Method code goes here
    }
    
}
?>