Completed
Push — master ( fa8d3b...efa8af )
by Владислав
04:09 queued 01:58
created
src/core/DeCaptchaAbstract.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         }
128 128
         switch ($param) {
129 129
             case static::PARAM_SPEC_FILE:
130
-                return (version_compare(PHP_VERSION, '5.5.0') >= 0) ? new \CURLFile($this->paramsSpec[$param]) : '@'.$this->paramsSpec[$param];
130
+                return (version_compare(PHP_VERSION, '5.5.0') >= 0) ? new \CURLFile($this->paramsSpec[$param]) : '@' . $this->paramsSpec[$param];
131 131
             case static::PARAM_SPEC_KEY:
132 132
                 return is_callable($this->paramsSpec[$param]) ? $this->paramsSpec[$param]() : $this->paramsSpec[$param];
133 133
             case static::PARAM_SPEC_CAPTCHA:
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             $uri[] = "$key=$value";
185 185
         }
186 186
 
187
-        return "{$this->getBaseUrl()}{$this->resUrl}?".implode('&', $uri);
187
+        return "{$this->getBaseUrl()}{$this->resUrl}?" . implode('&', $uri);
188 188
     }
189 189
 
190 190
     /**
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      */
203 203
     protected function getInUrl()
204 204
     {
205
-        return $this->getBaseUrl().$this->inUrl;
205
+        return $this->getBaseUrl() . $this->inUrl;
206 206
     }
207 207
 
208 208
     /**
Please login to merge, or discard this patch.