Pelzini

This is the code documentation for the Pelzini project

class ParserClass

Stores information about a specific class

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-03-29
**/
class NewClassName extends ParserClass {
    
    /**
    * Applies the contents of a doc-block to this element
    **/
    protected function processSpecificDocblockTags ($text $docblock_tags) {
        // Method code goes here
    }
    
    /**
    * Cascades Docblock tags into the children that do not have any tags, and then
    * runs processTags() for all of the children items.
    **/
    public function treeWalk ($function_name, ParserItem $parent_item) {
        // Method code goes here
    }
    
    /**
    * Debugging use only
    **/
    public function dump () {
        // Method code goes here
    }
    
    /**
    * Creates this object
    **/
    public function __construct () {
        // Method code goes here
    }
    
}
?>