IPcalc-u-later/src/Http/View/Engine/JsonEngine.php
2024-11-26 14:22:59 +01:00

19 lines
No EOL
317 B
PHP

<?php
namespace Core\Http\View\Engine;
use Core\Http\View\Render;
class JsonEngine extends Render
{
/**
* @inheritDoc
* @throws \Exception
*/
public function render(): void
{
header('Content-Type: application/json; charset=utf-8');
echo json_encode($this->data);
}
}