| Total Complexity | 6 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 23 | final class HtmlResponse extends Response |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @param mixed $html |
||
| 27 | * |
||
| 28 | * @throws InvalidArgumentException |
||
| 29 | */ |
||
| 30 | 4 | public function __construct(int $statusCode, $html) |
|
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param mixed $html |
||
| 40 | * |
||
| 41 | * @throws InvalidArgumentException |
||
| 42 | */ |
||
| 43 | 4 | private static function createBody($html): StreamInterface |
|
| 64 |