Completed
Push — master ( c44ae3...d95cc8 )
by Jan
03:36
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.