| 1 | <?php |
||
| 10 | class MediaController extends Controller |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param Request $request |
||
| 14 | * @param int $id |
||
| 15 | * @param int $width |
||
| 16 | * @param int $height |
||
| 17 | * @return RedirectResponse |
||
| 18 | */ |
||
| 19 | public function imageRedirectAction(Request $request, $id, $width, $height) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param Request $request |
||
| 28 | * @param $id |
||
| 29 | * @return StreamedResponse |
||
| 30 | */ |
||
| 31 | public function downloadAction(Request $request, $id) |
||
| 37 | } |
||
| 38 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.