ch1p_io_web/engine/AjaxResponse.php
Evgeny Zinoviev f7bfdf58de initial
2022-07-09 19:40:17 +03: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');
}
}