Completed
Push — master ( a0abe9...251806 )
by Dmitry
12:04
created
src/curl/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         } elseif ($this->getVersion() === '1.0') {
72 72
             $requestOptions[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_0;
73 73
         } else {
74
-            throw new RequestErrorException('Request version "' . $this->getVersion() . '" is not support by cURL', $this);
74
+            throw new RequestErrorException('Request version "'.$this->getVersion().'" is not support by cURL', $this);
75 75
         }
76 76
 
77 77
         return ArrayHelper::merge($this->defaultOptions, $this->getDb()->config, $requestOptions, $options);
Please login to merge, or discard this patch.
tests/_bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
 
11 11
 error_reporting(E_ALL);
12 12
 
13
-require_once __DIR__ . '/../vendor/autoload.php';
14
-require_once __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
13
+require_once __DIR__.'/../vendor/autoload.php';
14
+require_once __DIR__.'/../vendor/yiisoft/yii2/Yii.php';
15 15
 
16 16
 use hiqdev\composer\config\Builder;
17 17
 use yii\console\Application;
Please login to merge, or discard this patch.