%PDF- %PDF-
| Direktori : /home/vacivi36/consentimento/assets/vendor/mpdf/mpdf/src/Tag/ |
| Current File : /home/vacivi36/consentimento/assets/vendor/mpdf/mpdf/src/Tag/SubstituteTag.php |
<?php
namespace Mpdf\Tag;
abstract class SubstituteTag extends Tag
{
public function close(&$ahtml, &$ihtml)
{
$tag = $this->getTagName();
if ($this->mpdf->InlineProperties[$tag]) {
$this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
}
unset($this->mpdf->InlineProperties[$tag]);
$ltag = strtolower($tag);
$this->mpdf->$ltag = false;
}
}