Completed
Push — master ( 76f33d...17f37d )
by Alex
04:01
created
Category
src/Pin/Handler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.