1 | <?php |
||
14 | class ResponseBuilder |
||
15 | { |
||
16 | /** |
||
17 | * @var ResponseInterface |
||
18 | */ |
||
19 | private $response; |
||
20 | |||
21 | 2 | private function __construct(ResponseInterface $response) |
|
25 | |||
26 | 2 | public static function init(ResponseInterface $response) : self |
|
30 | |||
31 | 2 | public function withJsonBody($data, string $contentType = 'application/json') : ResponseInterface |
|
37 | } |
||
38 |