| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class HomeController extends AppController |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param Request $request |
||
| 16 | * @return Response |
||
| 17 | * @SWG\Response( |
||
| 18 | * response=200, |
||
| 19 | * description="Returns the rewards of an user" |
||
| 20 | * ) |
||
| 21 | * @SWG\Parameter( |
||
| 22 | * name="order", |
||
| 23 | * in="query", |
||
| 24 | * type="integer", |
||
| 25 | * description="The field used to order rewards" |
||
| 26 | * ) |
||
| 27 | * @SWG\Tag(name="home") |
||
| 28 | */ |
||
| 29 | public function index(Request $request) |
||
| 32 | } |
||
| 33 | } |