mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
14 lines
170 B
PHP
Executable File
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);
|
|
}
|
|
}
|