1 <?php
2
3 abstract class KintObject
4 {
5 /** @var string type of variable, can be set in inherited object or in static::parse() method */
6 public $name = 'NOT SET';
7
8 /** @var string quick variable value displayed inline */
9 public $value;
10
11 /**
12 * returns false or associative array - each key represents a tab in default view, values may be anything
13 *
14 * @param $variable
15 *
16 * @return mixed
17 */
18 abstract public function parse( & $variable );
19 }