Skip to content

Commit 9419887

Browse files
authored
[Mime] Removed unnecessary strtolower
1 parent 47a2f58 commit 9419887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Mime/Header/Headers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public function add(HeaderInterface $header)
168168
public function get(string $name): ?HeaderInterface
169169
{
170170
$name = strtolower($name);
171-
if (!isset($this->headers[strtolower($name)])) {
171+
if (!isset($this->headers[$name])) {
172172
return null;
173173
}
174174

0 commit comments

Comments
 (0)