Gusev's proposed patch
[htmlpurifier.git] / library / HTMLPurifier / ArrayNode.php
blob1871059b67fa786427a27616919f19f1ab2c95af
1 <?php
3 class HTMLPurifier_ArrayNode
5 public function __construct(&$value)
7 $this->value = &$value;
10 /**
11 * @var HTMLPurifier_ArrayNode
13 public $prev = null;
15 /**
16 * @var HTMLPurifier_ArrayNode
18 public $next = null;
20 /**
21 * @var mixed
23 public $value = null;