mark icon indicating copy to clipboard operation
mark copied to clipboard

BC Callback: request, response, ...args

Open vanodevium opened this issue 2 years ago • 0 comments

Breaking changes

Closes #13

Useful for headers, status code and other purposes. $response is an instance of \Workerman\Protocols\Http\Response

Example of JSON endpoint:

$api->get('/json', function ($request, $response) {
    return $response->withHeader('Content-Type', 'application/json')
                    ->withBody(json_encode(['a' => 1, 'b' => 2]));
});

Breaking changes

vanodevium avatar Jan 08 '23 16:01 vanodevium