Files
PHP-Course/exam/classes/Api/Api.php
T
2024-07-22 00:56:04 +02:00

14 lines
180 B
PHP

<?php
namespace Khofmann\Api;
use Khofmann\Response\Response;
class Api
{
public function __construct()
{
Response::response()->header("Cache-control: no-cache");
}
}