Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit 6a6269c

Browse files
Ignore this code from code coverage analysis as we cannot test it easily in a CLI environment
1 parent 5bba639 commit 6a6269c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/framework/http/Response.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ public function setBody(string $body): void
2626

2727
public function send(): void
2828
{
29+
// @codeCoverageIgnoreStart
2930
foreach ($this->headers as $header) {
3031
header($header);
3132
}
33+
// @codeCoverageIgnoreEnd
3234

3335
print $this->body;
3436
}

0 commit comments

Comments
 (0)