File "Empty.php"

Full path: /home/fsibplc/public_html/admin/remittance/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php
File size: 248 B (248 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

/**
 * 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