Pelzini

This is the code documentation for the Pelzini project

class ParserAuthor

Represents an author of a parser item (e.g. a ParserFunction or ParserClass)

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-26
**/
class NewClassName extends ParserAuthor {
    
    public function __construct () {
        // Method code goes here
    }
    
    /**
    * Debugging use only
    **/
    public function dump () {
        // Method code goes here
    }
    
}
?>