Passed
Push — master ( e246b6...559082 )
by Hannes
03:11 queued 12s
created
Model/Api/Request/Base.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -268,7 +268,6 @@
 block discarded – undo
268 268
 
269 269
     /**
270 270
      * Send the previously prepared request, log request and response into the database and return the response
271
-
272 271
      * @param  PayoneMethod $oPayment
273 272
      * @return array
274 273
      */
Please login to merge, or discard this patch.
Observer/Transactionstatus/Paid.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,9 +95,9 @@
 block discarded – undo
95 95
         $aInvoiceList = $oOrder->getInvoiceCollection()->getItems();
96 96
         if ($oInvoice = array_shift($aInvoiceList)) { // get first invoice
97 97
             $oInvoice->pay(); // mark invoice as paid
98
-	    $oInvoice->save();
98
+        $oInvoice->save();
99 99
 
100
-	    $oOrder->save();
101
-	}
100
+        $oOrder->save();
101
+    }
102 102
     }
103 103
 }
Please login to merge, or discard this patch.
Model/Api/Request/Authorization.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      *
62 62
      * @var \Payone\Core\Helper\Toolkit
63 63
      */
64
-     protected $toolkitHelper;
64
+        protected $toolkitHelper;
65 65
 
66 66
     /**
67 67
      * Constructor
Please login to merge, or discard this patch.