1 | <?php |
||
10 | class Responder |
||
11 | { |
||
12 | /** |
||
13 | * @param $content |
||
14 | * @param $response |
||
15 | * @param array $headers |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public static function getJsonResponse($content, $response, $headers = []) |
||
23 | |||
24 | /** |
||
25 | * @param array $headers |
||
26 | * @param $content |
||
27 | * @param $response |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public static function getResponse($headers = [], $content, $response) |
||
51 | |||
52 | } |