mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-11 01:36:20 +02:00
25 lines
340 B
PHP
25 lines
340 B
PHP
<?php
|
|
|
|
class HTMLPurifier_ArrayNode
|
|
{
|
|
public function __construct(&$value)
|
|
{
|
|
$this->value = &$value;
|
|
}
|
|
|
|
/**
|
|
* @var HTMLPurifier_ArrayNode
|
|
*/
|
|
public $prev = null;
|
|
|
|
/**
|
|
* @var HTMLPurifier_ArrayNode
|
|
*/
|
|
public $next = null;
|
|
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
public $value = null;
|
|
}
|