The top-level class of all parser items. Almost all ParserItems should extend CodeParserItem.
This is the code documentation for the Pelzini project
Search documentation |
class ParserItemThe 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-12-22 **/ 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 } } ?> |
Powered by Pelzini, version 0.9.0 |
Documentation is made available under the
GNU Free Documentation License 1.2. Generated: Thursday, 15th March, 2018 at 02:05 pm |