@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | { |
| 69 | 69 | $client = new Curl; |
| 70 | 70 | $client->setVerifyPeer(false); |
| 71 | - $client->setOption(CURLOPT_USERPWD, $this->options['key'] . ':'); |
|
| 71 | + $client->setOption(CURLOPT_USERPWD, $this->options['key'].':'); |
|
| 72 | 72 | if (isset($this->options['timeout'])) { |
| 73 | 73 | $client->setTimeout($this->options['timeout']); |
| 74 | 74 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | public function submit(RequestInterface $request) |
| 86 | 86 | { |
| 87 | 87 | $response = $this->browser->submit( |
| 88 | - $this->options['host'] . $request->getPath(), |
|
| 88 | + $this->options['host'].$request->getPath(), |
|
| 89 | 89 | $request->getData(), |
| 90 | 90 | $request->getMethod()); |
| 91 | 91 | |