Passed
Branch master (84bf96)
by Lars
04:21
created
QuickPay/QuickPay.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@
 block discarded – undo
21 21
 
22 22
 
23 23
     /**
24
-    * __construct function.
25
-    *
26
-    * Instantiates the main class.
27
-    * Creates a client which is passed to the request construct.
28
-    *
29
-    * @access public
30
-    */
24
+     * __construct function.
25
+     *
26
+     * Instantiates the main class.
27
+     * Creates a client which is passed to the request construct.
28
+     *
29
+     * @access public
30
+     */
31 31
     public function __construct( $auth_string = '' )
32 32
     {
33 33
         $client = new Client($auth_string);
Please login to merge, or discard this patch.
QuickPay/API/Client.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace QuickPay\API;
3 3
 /**
4
- * @class       QuickPay_Client
5
- * @since       1.0.0
6
- * @package     QuickPay
7
- * @category    Class
8
- * @author      Patrick Tolvstein, Perfect Solution ApS
9
- * @docs        http://tech.quickpay.net/api/
10
- */
4
+     * @class       QuickPay_Client
5
+     * @since       1.0.0
6
+     * @package     QuickPay
7
+     * @category    Class
8
+     * @author      Patrick Tolvstein, Perfect Solution ApS
9
+     * @docs        http://tech.quickpay.net/api/
10
+     */
11 11
 class Client
12 12
 {
13 13
     /**
Please login to merge, or discard this patch.
QuickPay/API/Exception.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@
 block discarded – undo
12 12
 class Exception extends \Exception
13 13
 {
14 14
     /**
15
-    * __Construct function.
16
-    *
17
-    * Redefine the exception so message isn't optional
18
-    *
19
-    * @access public
20
-    * @return void
21
-    */
15
+     * __Construct function.
16
+     *
17
+     * Redefine the exception so message isn't optional
18
+     *
19
+     * @access public
20
+     * @return void
21
+     */
22 22
     public function __construct($message, $code = 0, Exception $previous = null)
23 23
     {
24 24
         // Make sure everything is assigned properly
Please login to merge, or discard this patch.
QuickPay/API/Response.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace QuickPay\API;
3 3
 /**
4
- * @class         QuickPay_Response
5
- * @since        1.0.0
6
- * @package        QuickPay
7
- * @category    Class
8
- * @author         Patrick Tolvstein, Perfect Solution ApS
9
- * @docs        http://tech.quickpay.net/api/
10
- */
4
+     * @class         QuickPay_Response
5
+     * @since        1.0.0
6
+     * @package        QuickPay
7
+     * @category    Class
8
+     * @author         Patrick Tolvstein, Perfect Solution ApS
9
+     * @docs        http://tech.quickpay.net/api/
10
+     */
11 11
 class Response
12 12
 {
13 13
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         return [
86 86
             $this->status_code,
87 87
             ['sent' => $sent_headers,
88
-             'received' => $this->received_headers,
88
+                'received' => $this->received_headers,
89 89
             ],
90 90
             $this->response_data,
91 91
         ];
Please login to merge, or discard this patch.
QuickPay/API/Constants.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace QuickPay\API;
3 3
 /**
4
- * @class       QuickPay_Constants
5
- * @since       1.0.0
6
- * @package     QuickPay
7
- * @category    Class
8
- * @author      Patrick Tolvstein, Perfect Solution ApS
9
- * @docs        http://tech.quickpay.net/api/
10
- */
4
+     * @class       QuickPay_Constants
5
+     * @since       1.0.0
6
+     * @package     QuickPay
7
+     * @category    Class
8
+     * @author      Patrick Tolvstein, Perfect Solution ApS
9
+     * @docs        http://tech.quickpay.net/api/
10
+     */
11 11
 class Constants
12 12
 {
13 13
     /**
Please login to merge, or discard this patch.