class KintObject

Hierarchy

Expanded class hierarchy of KintObject

File

kint/kint/inc/kintObject.class.php, line 3

View source
abstract class KintObject {
    
    /** @var string type of variable, can be set in inherited object or in static::parse() method */
    public $name = 'NOT SET';
    
    /** @var string quick variable value displayed inline */
    public $value;
    
    /**
     * returns false or associative array - each key represents a tab in default view, values may be anything
     *
     * @param $variable
     *
     * @return mixed
     */
    public abstract function parse(&$variable);

}

Members

Title Sort descending Modifiers Object type Summary Overrides
KintObject::$name public property @var string type of variable, can be set in inherited object or in static::parse() method
KintObject::$value public property @var string quick variable value displayed inline
KintObject::parse abstract public function * returns false or associative array - each key represents a tab in default view, values may be anything
*
*
3