14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
namespace Itguild\Tables\formats;
|
|
|
|
use Itguild\Tables\formats\BaseFormat;
|
|
|
|
class HtmlFormat extends BaseFormat
|
|
{
|
|
|
|
static function fetch(?string $data, string $options = ""): string
|
|
{
|
|
return (string)$data;
|
|
}
|
|
} |