@@ -17,7 +17,7 @@ |
||
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); |
@@ -9,7 +9,7 @@ |
||
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 | } |