4in1_ws_web/classes/AjaxResponse.php
2023-12-30 23:29:31 +00:00

13 lines
403 B
PHP

<?php
class AjaxResponse extends Response {
public function __construct(...$args) {
parent::__construct(...$args);
$this->addHeader('Content-Type: application/json; charset=utf-8');
$this->addHeader('Cache-Control: no-cache, must-revalidate');
$this->addHeader('Pragma: no-cache');
$this->addHeader('Content-Type: application/json; charset=utf-8');
}
}