@@ -20,7 +20,7 @@ |
||
20 | 20 | * @param array $array |
21 | 21 | * @param RpcRequestInterface $request |
22 | 22 | * |
23 | - * @return JsonResponse |
|
23 | + * @return ResponseImpl |
|
24 | 24 | */ |
25 | 25 | public function testAction($noDefault, $default = 'test', array $array, RpcRequestInterface $request) |
26 | 26 | { |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $client->request( |
48 | 48 | 'POST', |
49 | 49 | '/test/', |
50 | - array_replace(['method' => 'test/method',], $args) |
|
50 | + array_replace(['method' => 'test/method', ], $args) |
|
51 | 51 | ); |
52 | 52 | } catch (InvalidMethodParametersException $e) { |
53 | 53 | if ($valid) { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $client->request( |
67 | 67 | 'POST', |
68 | 68 | '/not_found_endpoint/', |
69 | - array_replace(['method' => 'test/method',], ['arg' => 1]) |
|
69 | + array_replace(['method' => 'test/method', ], ['arg' => 1]) |
|
70 | 70 | ); |
71 | 71 | } |
72 | 72 |