Completed
Push — master ( c8064d...729f46 )
by Dmitry
02:44
created
src/curl/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed|string
66
+     * @return string
67 67
      */
68 68
     public function getRawData()
69 69
     {
Please login to merge, or discard this patch.
src/curl/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         } elseif ($this->getVersion() === '1.0') {
71 71
             $requestOptions[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_0;
72 72
         } else {
73
-            throw new RequestErrorException('Request version "' . $this->getVersion() . '" is not support by cURL', $this);
73
+            throw new RequestErrorException('Request version "'.$this->getVersion().'" is not support by cURL', $this);
74 74
         }
75 75
 
76 76
         $options = ArrayHelper::merge($this->defaultOptions, $this->getDb()->config, $requestOptions);
Please login to merge, or discard this patch.