Passed
Push — master ( b111b6...d62ebd )
by
unknown
01:46
created
Tests/api/RequestTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
 
9 9
 class RequestTest extends \PHPUnit_Framework_TestCase
10 10
 {
11
-	/**
12
-	 * @var Client
13
-	 */
11
+    /**
12
+     * @var Client
13
+     */
14 14
     protected $client;
15 15
 
16
-	/**
17
-	 * @var Request
18
-	 */
16
+    /**
17
+     * @var Request
18
+     */
19 19
     protected $request;
20 20
 
21 21
     public function setUp()
Please login to merge, or discard this patch.
QuickPay/API/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             'Accept: application/json',
64 64
         );
65 65
         if (!empty($this->auth_string)) {
66
-            $this->headers[] = 'Authorization: Basic ' . base64_encode($this->auth_string);
66
+            $this->headers[] = 'Authorization: Basic '.base64_encode($this->auth_string);
67 67
         }
68 68
 
69 69
         // Add custom headers and set headers in cURL object.
Please login to merge, or discard this patch.