blob: 931e5e7b4bb163feae8a562551e9649bb32c95b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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');
}
}
|