formats and style

This commit is contained in:
2024-08-08 17:08:46 +03:00
parent d0f136e484
commit 38d5deb36a
6 changed files with 50 additions and 15 deletions

View File

@ -7,8 +7,8 @@ use Itguild\Tables\formats\BaseFormat;
class HtmlFormat extends BaseFormat
{
static function fetch(?string $data, string $options = "")
static function fetch(?string $data, string $options = ""): string
{
return;
return (string)$data;
}
}