@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | ->getMock(); |
26 | 26 | |
27 | 27 | $apiClient->expects(self::once())->method('createResponseByData') |
28 | - ->willReturnCallback(function (array $postData) { |
|
28 | + ->willReturnCallback(function(array $postData) { |
|
29 | 29 | return new Response(new ResponseCode(ResponseCode::S200_OK), $postData); |
30 | 30 | }); |
31 | 31 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | ->getMock(); |
59 | 59 | |
60 | 60 | $apiClient->expects(self::once())->method('createResponseByData') |
61 | - ->willReturnCallback(function (array $postData) { |
|
61 | + ->willReturnCallback(function(array $postData) { |
|
62 | 62 | return new Response(new ResponseCode(ResponseCode::S200_OK), $postData); |
63 | 63 | }); |
64 | 64 |