docs: replace Content-type with Content-Type

This commit is contained in:
kenjis 2023-02-24 13:08:25 +09:00
parent 797b51ee8d
commit e90d56f5d7
No known key found for this signature in database
GPG Key ID: BD254878922AF198

View File

@ -6,7 +6,7 @@ $response = response();
$response->setStatusCode(Response::HTTP_OK); $response->setStatusCode(Response::HTTP_OK);
$response->setBody($output); $response->setBody($output);
$response->setHeader('Content-type', 'text/html'); $response->setHeader('Content-Type', 'text/html');
$response->noCache(); $response->noCache();
// Sends the output to the browser // Sends the output to the browser