Resources/Mpdf/Tag/Th.php

14 lines
170 B
PHP
Executable File

<?php
namespace Mpdf\Tag;
class Th extends Td
{
public function close(&$ahtml, &$ihtml)
{
$this->mpdf->SetStyle('B', false);
parent::close($ahtml, $ihtml);
}
}