Slide 16
Slide 16 text
alt3/cakephp-swagger
/**
* @SWG\Get(
* path="/cities",
* summary="Retrieve a list of cities",
* produces={"application/json"},
* @SWG\Parameter(name="sort",in="query",required=false,type="string"),
* @SWG\Response(
* response="200",
* description="Successful operation",
* @SWG\Schema(type="object",ref="#/components/schemas/Cities")
* )
* )
*/
public function index()
{
// ...code
}