function ResponseHeaderBag::allPreserveCase
Returns the headers, with original capitalizations.
1 call to ResponseHeaderBag::allPreserveCase()
- ResponseHeaderBag::allPreserveCaseWithoutCookies in vendor/
symfony/ http-foundation/ ResponseHeaderBag.php
File
-
vendor/
symfony/ http-foundation/ ResponseHeaderBag.php, line 48
Class
- ResponseHeaderBag
- ResponseHeaderBag is a container for Response HTTP headers.
Namespace
Symfony\Component\HttpFoundationCode
public function allPreserveCase() : array {
$headers = [];
foreach ($this->all() as $name => $value) {
$headers[$this->headerNames[$name] ?? $name] = $value;
}
return $headers;
}