Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function setFormat(callable $handler): callable |
||
15 | { |
||
16 | return function (RequestInterface $request, array $options) use ($handler) { |
||
17 | return $handler($request->withAddedHeader('Content-Type', 'application/json')->withAddedHeader('Accept', 'application/json'), $options); |
||
18 | }; |
||
19 | } |
||
20 | |||
30 |