Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class ResponseFactory extends BaseResponseFactory |
||
9 | { |
||
10 | /** |
||
11 | * Return a new response from the application. |
||
12 | * |
||
13 | * @param string $content |
||
14 | * @param int $status |
||
15 | * @param array $headers |
||
16 | * |
||
17 | * @return \Krenor\Http2Pusher\Response |
||
18 | */ |
||
19 | public function make($content = '', $status = 200, array $headers = []) |
||
24 |