Completed
Push — master ( c546a5...c93ba0 )
by
unknown
03:47 queued 10s
created
lib/Payone/Settings/Data/ConfigFile/PaymentMethod/Payolution.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /** @var string */
28 28
     protected $key = Payone_Enum_ClearingType::PAYOLUTION;
29 29
 
30
-   /**
30
+    /**
31 31
      * @return string
32 32
      */
33 33
     public function getKey()
Please login to merge, or discard this patch.
lib/Payone/Settings/Data/ConfigFile/PaymentMethod/PayolutionDebit.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /** @var string */
28 28
     protected $key = Payone_Enum_ClearingType::PAYOLUTIONDEBIT;
29 29
 
30
-   /**
30
+    /**
31 31
      * @return string
32 32
      */
33 33
     public function getKey()
Please login to merge, or discard this patch.
lib/Payone/Api/Enum/OnlinebanktransferType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     const GIROPAY = 'GPY';
37 37
     const EPS_ONLINE_BANK_TRANSFER = 'EPS';
38 38
     const POSTFINANCE_EFINANCE = 'PFF';
39
-    const POSTFINANCE_CARD  = 'PFC';
39
+    const POSTFINANCE_CARD = 'PFC';
40 40
     const IDEAL = 'IDL';
41 41
     const P24 = 'P24';
42 42
     const BANCONTACT = 'BCT';
Please login to merge, or discard this patch.
lib/Payone/Api/Mapper/Response/Preauthorization.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -46,17 +46,13 @@
 block discarded – undo
46 46
 
47 47
         if ($this->isApproved()) {
48 48
             $response = new Payone_Api_Response_Preauthorization_Approved($params);
49
-        }
50
-        elseif ($this->isRedirect()) {
49
+        } elseif ($this->isRedirect()) {
51 50
             $response = new Payone_Api_Response_Preauthorization_Redirect($params);
52
-        }
53
-        elseif ($this->isPending()) {
51
+        } elseif ($this->isPending()) {
54 52
             $response = new Payone_Api_Response_Preauthorization_Pending($params);
55
-        }
56
-        elseif ($this->isError()) {
53
+        } elseif ($this->isError()) {
57 54
             $response = new Payone_Api_Response_Error($params);
58
-        }
59
-        else {
55
+        } else {
60 56
             throw new Payone_Api_Exception_UnknownStatus();
61 57
         }
62 58
 
Please login to merge, or discard this patch.
lib/Payone/SessionStatus/Response/Abstract.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,7 @@
 block discarded – undo
83 83
         {
84 84
             if ($data === null) {
85 85
                 continue;
86
-            }
87
-            elseif ($data instanceof Payone_Protocol_Service_ApplyFilters == false) {
86
+            } elseif ($data instanceof Payone_Protocol_Service_ApplyFilters == false) {
88 87
                 $result[$key] = $data;
89 88
             }
90 89
         }
Please login to merge, or discard this patch.
lib/Payone/Enum/ClearingType.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@  discard block
 block discarded – undo
29 29
      */
30 30
 
31 31
     /** Cash */
32
-    const BARZAHLEN = 'csh';                // Default csh mapping
32
+    const BARZAHLEN = 'csh'; // Default csh mapping
33 33
 
34 34
     /** Cash on delivery */
35
-    const CASHONDELIVERY = 'cod';           // Default cod mapping
35
+    const CASHONDELIVERY = 'cod'; // Default cod mapping
36 36
 
37 37
     /** Creditcards */
38 38
     const CREDITCARD_IFRAME = 'cc';
39
-    const CREDITCARD = 'cc';                // Default cc mapping
39
+    const CREDITCARD = 'cc'; // Default cc mapping
40 40
 
41 41
     /** Debit payments */
42
-    const DEBITPAYMENT = 'elv';             // Default elv mapping
42
+    const DEBITPAYMENT = 'elv'; // Default elv mapping
43 43
 
44 44
     /** Financing */
45 45
     const PAYOLUTION = 'fnc';
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
     const PAYOLUTIONINVOICING = 'fnc';
49 49
     const RATEPAY = 'fnc';
50 50
     const RATEPAYDIRECTDEBIT = 'fnc';
51
-    const FINANCING = 'fnc';                // Default fnc mapping
51
+    const FINANCING = 'fnc'; // Default fnc mapping
52 52
 
53 53
     /** Invoices */
54 54
     const PAYMENTGUARANTEEINVOICE = 'rec';
55
-    const INVOICE = 'rec';                  // Default rec mapping
55
+    const INVOICE = 'rec'; // Default rec mapping
56 56
 
57 57
     /** Online Banktransfer */
58 58
     const ONLINEBANKTRANSFERBCT = 'sb';
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
     const ONLINEBANKTRANSFERIDL = 'sb';
64 64
     const ONLINEBANKTRANSFERGIROPAY = 'sb';
65 65
     const ONLINEBANKTRANSFERSOFORT = 'sb';
66
-    const ONLINEBANKTRANSFER = 'sb';        // Default sb mapping
66
+    const ONLINEBANKTRANSFER = 'sb'; // Default sb mapping
67 67
 
68 68
     /** Pre-payments */
69
-    const ADVANCEPAYMENT = 'vor';           // Default vor mapping
69
+    const ADVANCEPAYMENT = 'vor'; // Default vor mapping
70 70
 
71 71
     /** Wallets */
72 72
     const AMAZONPAY = 'wlt';
@@ -74,5 +74,5 @@  discard block
 block discarded – undo
74 74
     const WALLETALIPAY = 'wlt';
75 75
     const WALLETPAYDIREKT = 'wlt';
76 76
     const WALLETPAYPALEXPRESS = 'wlt';
77
-    const WALLET = 'wlt';                   // Default wlt mapping
77
+    const WALLET = 'wlt'; // Default wlt mapping
78 78
 }
Please login to merge, or discard this patch.