How to document settings method with phpdoc

67 Views Asked by At

I have a class with the methods getSetting($name) and setSetting($name,$value). These methods are used to set multiple settings throughout the class.

My question is what is the best way in phpDoc to document the available settings. I cannot do it above these methods i think, because the methods are defined only in the parent class and the children might have their own settings.

My first guess was to document it above each class in the description, so like this:

<?php
/**
 * A tomato class. Needed for pizza
 * 
 * Settings:
 * color string default: red
 * size integer
 */
 class tomato extends fruit{
    function __construct(){
        $this->setSetting('color','red');
    }
 }

 /**
 * A fruit class
 *
 * Settings:
 * price integer
 */

 class fruit{
    var $settings   = array();
    /**
     * Sets setting
     * @param string $name
     * @param mixed $value
     */
    function setSetting($name,$value = NULL){
        $this->settings[$name]  = $value;
    }

    /**
     * Returns setting
     * @param string $name
     * @return mixed
     */
    function getSetting($name){
        if(isset($this->settings[$name])){
            return $this->settings[$name];
        }else{
            return NULL;
        }
    }
 }


 ?>

I was wondering if this was correct, or if there might be tags available for this, or maybe an other better solution.

0

There are 0 best solutions below