Completed
Push — master ( 54bcb1...083d0b )
by Jan
03:06
created
src/Api/Driver/CurlDriverException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	 */
18 18
 	public function __construct($handle)
19 19
 	{
20
-		parent::__construct('Request error: ' . curl_error($handle));
20
+		parent::__construct('Request error: '.curl_error($handle));
21 21
 
22 22
 		$this->code = curl_errno($handle);
23 23
 		$this->info = curl_getinfo($handle);
Please login to merge, or discard this patch.
src/Api/Driver/GuzzleDriverException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 
10 10
 	public function __construct(\Throwable $previous)
11 11
 	{
12
-		parent::__construct('Request error: ' . $previous->getMessage(), $previous->getCode(), $previous);
12
+		parent::__construct('Request error: '.$previous->getMessage(), $previous->getCode(), $previous);
13 13
 	}
14 14
 
15 15
 }
Please login to merge, or discard this patch.
tests/unit/Call/ReceivePaymentRequestTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.