Pelzini

This is the code documentation for the Pelzini project

class ParserItem

The top-level class of all parser items. Almost all ParserItems should extend CodeParserItem.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-27
**/
class NewClassName extends ParserItem {
    
    /**
    * Is used for debugging.
    **/
    protected function dump () {
        // Method code goes here
    }
    
    /**
    * In almost all cases this method should be overwritten, but it does not have to be.
    * All overwriting classes must call this method at the beginning of their constructor:
    *   parent::__construct();
    **/
    protected function __construct () {
        // Method code goes here
    }
    
}
?>