File "Empty.php"
Full Path: /home/stylijtl/public_html/wp-content/plugins/wpforms-lite/vendor_prefixed/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php
File size: 279 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WPForms\Vendor;
/**
* Concrete empty token class.
*/
class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag
{
public function toNode()
{
$n = parent::toNode();
$n->empty = \true;
return $n;
}
}
// vim: et sw=4 sts=4