Add BarejsonFormat

This commit is contained in:
hkcomori 2024-05-10 18:14:18 +09:00
parent 1c3024fca7
commit 0e4830e0ed
No known key found for this signature in database
GPG Key ID: 2B81E7499B8B974C

View File

@ -0,0 +1,17 @@
<?php
class BarejsonFormat extends FormatAbstract
{
const MIME_TYPE = 'application/json';
public function stringify()
{
if (count($this->getItems()) != 1) {
throw new Exception('Unable to identify the target');
}
$item = $this->getItems()[0];
$content = $item->getContent() ?? '';
$content = mb_convert_encoding($content, $this->getCharset(), 'UTF-8');
return $content;
}
}