1 | <?php |
||
19 | class TestController extends Controller |
||
20 | { |
||
21 | /** |
||
22 | * @Method("GET") |
||
23 | * @Route("", name="loevgaard_dandomain_altapay_test_index") |
||
24 | * |
||
25 | * @param Request $request |
||
26 | * |
||
27 | * @return Response |
||
28 | */ |
||
29 | public function indexAction(Request $request) |
||
43 | |||
44 | /** |
||
45 | * @Method("GET") |
||
46 | * @Route("/checksum1/{orderId}/{amount}/{sharedKey}/{currency}", name="loevgaard_dandomain_altapay_test_checksum_1") |
||
47 | * |
||
48 | * @param int $orderId |
||
49 | * @param string $amount |
||
50 | * @param string $sharedKey |
||
51 | * @param int $currency |
||
52 | * |
||
53 | * @return JsonResponse |
||
54 | */ |
||
55 | public function checksum1Action($orderId, $amount, $sharedKey, $currency) |
||
61 | } |
||
62 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.