You are here

abstract class KintObject in Devel 8.2

Same name and namespace in other branches
  1. 8 kint/kint/inc/kintObject.class.php \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

Namesort descending Modifiers Type Description 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