| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class TextResponse implements ResponseInterface, ResponseStatusCodeInterface |
||
| 10 | { |
||
| 11 | use ResponseExtensionTrait; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param string $text |
||
| 15 | * @param int $code |
||
| 16 | * @param array $headers |
||
| 17 | * @param string $protocol |
||
| 18 | * @param string $reasonPhrase |
||
| 19 | */ |
||
| 20 | 27 | public function __construct( |
|
| 31 |