22 lines
446 B
PHP
22 lines
446 B
PHP
<?php namespace MapGuesser\Response;
|
|
|
|
class JsonContent extends ContentBase
|
|
{
|
|
public function __construct(array &$data = [])
|
|
{
|
|
$this->data = &$data;
|
|
}
|
|
|
|
public function render(): void
|
|
{
|
|
$this->data['__debug__runtime'] = round((hrtime(true) - SCRIPT_STARTED) / 1e+6, 1);
|
|
|
|
echo json_encode($this->data);
|
|
}
|
|
|
|
public function getContentType(): string
|
|
{
|
|
return 'application/json';
|
|
}
|
|
}
|