Pelzini

This is the code documentation for the Pelzini project

class ParserEnumeration

Represents an enumeration

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-03-29
**/
class NewClassName extends ParserEnumeration {
    
    public function __construct () {
        // Method code goes here
    }
    
    /**
    * Applies the contents of a doc-block to this element
    **/
    protected function processSpecificDocblockTags ($text $docblock_tags) {
        // Method code goes here
    }
    
    /**
    * Debugging use only
    **/
    public function dump () {
        // Method code goes here
    }
    
}
?>