Pelzini

This is the code documentation for the Pelzini project

class ParserFunction

Represents a function

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-26
**/
class NewClassName extends ParserFunction {
    
    /**
    * Debugging use only
    **/
    public function dump () {
        // Method code goes here
    }
    
    /**
    * Does post-pasing processing of this ParserFunction.
    * Specifically, loads types for the function arguments
    **/
    public function post_load () {
        // Method code goes here
    }
    
    public function __construct () {
        // Method code goes here
    }
    
    /**
    * Processes Javadoc tags that are specific to this PaserItem
    **/
    protected function processSpecificDocblockTags ($docblock_tags) {
        // Method code goes here
    }
    
}
?>