This commit is contained in:
hkcomori 2025-03-11 15:00:31 +01:00 committed by GitHub
commit ab1bc3e860
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}
}