HTMLPurifier_Zipper::delete PHP Method

delete() public method

Delete contents of current hole, shifting hole to next element.
public delete ( ) : Original
return Original contents of new hole.
    public function delete()
    {
        return empty($this->back) ? NULL : array_pop($this->back);
    }