aboutsummaryrefslogtreecommitdiff
path: root/engine/AjaxResponse.php
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2024-01-31 06:11:00 +0300
committerEvgeny Zinoviev <me@ch1p.io>2024-01-31 20:45:40 +0300
commitc0dc531ebefd8912819f3b6c8bda1fed3c7e750c (patch)
tree2c75aa9df182260aef09faf4befd81a4c2b9c5e2 /engine/AjaxResponse.php
parent48d688cdf7f9eae1bf11b8a6f0e5b98687c604cb (diff)
make it simple, but not simpler
Diffstat (limited to 'engine/AjaxResponse.php')
-rw-r--r--engine/AjaxResponse.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/engine/AjaxResponse.php b/engine/AjaxResponse.php
deleted file mode 100644
index 931e5e7..0000000
--- a/engine/AjaxResponse.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?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');
- }
-
-} \ No newline at end of file