Completed
Push — master ( 4f6aa3...3890b9 )
by
unknown
01:49 queued 47s
created
lib/Payone/Api/Mapper/Response/3dsCheck.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -45,17 +45,13 @@
 block discarded – undo
45 45
 
46 46
         if ($this->isValid()) {
47 47
             $response = new Payone_Api_Response_3dsCheck_Valid($params);
48
-        }
49
-        elseif ($this->isEnrolled()) {
48
+        } elseif ($this->isEnrolled()) {
50 49
             $response = new Payone_Api_Response_3dsCheck_Enrolled($params);
51
-        }
52
-        elseif ($this->isInvalid()) {
50
+        } elseif ($this->isInvalid()) {
53 51
             $response = new Payone_Api_Response_3dsCheck_Invalid($params);
54
-        }
55
-        elseif ($this->isError()) {
52
+        } elseif ($this->isError()) {
56 53
             $response = new Payone_Api_Response_Error($params);
57
-        }
58
-        else {
54
+        } else {
59 55
             throw new Payone_Api_Exception_UnknownStatus();
60 56
         }
61 57
 
Please login to merge, or discard this patch.
lib/Payone/Api/Mapper/Request/Payment/Genericpayment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     public function map(Payone_Api_Request_Interface $request)
31 31
     {
32 32
         /** @var $request Payone_Api_Request_Authorization */
33
-        if($request->getAmount()) {
33
+        if ($request->getAmount()) {
34 34
             $this->mapAmount($request);
35 35
         }
36 36
 
Please login to merge, or discard this patch.
lib/Payone/Api/Enum/AddressCheckDivergence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
 {
35 35
     const DEVIANT_SURNAME = 'L';
36 36
     const DEVIANT_FIRSTNAME = 'F';
37
-    const DEVIANT_ADDRESS= 'A';
37
+    const DEVIANT_ADDRESS = 'A';
38 38
     const DEVIANT_DATE_OF_BIRTH = 'B';
39 39
 }
Please login to merge, or discard this patch.
lib/Payone/Api/Enum/GenericpaymentAction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@
 block discarded – undo
23 23
     /**
24 24
      * initalize paypal express checkout process
25 25
      */
26
-    const PAYPAL_ECS_SET_EXPRESSCHECKOUT='setexpresscheckout';
26
+    const PAYPAL_ECS_SET_EXPRESSCHECKOUT = 'setexpresscheckout';
27 27
     
28 28
     /**
29 29
      * get customer shipping address from paypal
30 30
      */
31
-    const PAYPAL_ECS_GET_EXPRESSCHECKOUTDETAILS='getexpresscheckoutdetails';
31
+    const PAYPAL_ECS_GET_EXPRESSCHECKOUTDETAILS = 'getexpresscheckoutdetails';
32 32
     
33 33
     const RATEPAY_PROFILE = 'profile';
34 34
 
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Abstract.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function __toString()
159 159
     {
160
-        if($this->applyFilters) {
160
+        if ($this->applyFilters) {
161 161
             $result = $this->applyFilters->apply($this->toArray());
162 162
         } else {
163 163
             $protocolFactory     = new Payone_Protocol_Factory();
@@ -415,10 +415,10 @@  discard block
 block discarded – undo
415 415
     
416 416
     public function isFrontendApiCall() 
417 417
     {
418
-        if($this instanceof Payone_Api_Request_Authorization_Abstract) {
418
+        if ($this instanceof Payone_Api_Request_Authorization_Abstract) {
419 419
             $oOrder = Mage::getSingleton('checkout/session')->getQuote();
420 420
             $oPayment = $oOrder->getPayment();
421
-            if($oPayment->getMethod() == 'payone_creditcard_iframe') {
421
+            if ($oPayment->getMethod() == 'payone_creditcard_iframe') {
422 422
                 return true;
423 423
             }
424 424
         }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -141,8 +141,7 @@  discard block
 block discarded – undo
141 141
                  * @var Payone_Api_Request_Parameter_Interface $data
142 142
                  */
143 143
                 $result = array_merge($result, $data->toArray());
144
-            }
145
-            elseif ($data instanceof Payone_Protocol_Service_ApplyFilters == false) {
144
+            } elseif ($data instanceof Payone_Protocol_Service_ApplyFilters == false) {
146 145
                 $result[$key] = $data;
147 146
             }
148 147
         }
@@ -194,8 +193,7 @@  discard block
 block discarded – undo
194 193
 
195 194
                 return $object->get($propertyName);
196 195
             }
197
-        }
198
-        elseif (property_exists($this, $name)) {
196
+        } elseif (property_exists($this, $name)) {
199 197
             return $this->$name;
200 198
         }
201 199
 
@@ -228,8 +226,7 @@  discard block
 block discarded – undo
228 226
 
229 227
                 return $object->set($propertyName, $value);
230 228
             }
231
-        }
232
-        elseif (property_exists($this, $name)) {
229
+        } elseif (property_exists($this, $name)) {
233 230
             $this->$name = $value;
234 231
             return true;
235 232
         }
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Parameter/Abstract.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,7 @@
 block discarded – undo
69 69
         {
70 70
             if (!is_array($data) and !is_object($data)) {
71 71
                 $result[$key] = $data;
72
-            }
73
-            else if ($data instanceof Payone_Api_Request_Parameter_Interface) {
72
+            } else if ($data instanceof Payone_Api_Request_Parameter_Interface) {
74 73
                 /**
75 74
                  * @var Payone_Api_Request_Parameter_Interface $data
76 75
                  */
Please login to merge, or discard this patch.
Payone/Api/Request/Parameter/ManageMandate/PaymentMethod/BankAccount.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@
 block discarded – undo
33 33
 class Payone_Api_Request_Parameter_ManageMandate_PaymentMethod_BankAccount
34 34
     extends Payone_Api_Request_Parameter_ManageMandate_PaymentMethod_Abstract
35 35
 {
36
-     /**
37
-     * @var string
38
-     */
36
+        /**
37
+         * @var string
38
+         */
39 39
     protected $bankcountry = NULL;
40 40
     /**
41 41
      * @var string
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Genericpayment.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@  discard block
 block discarded – undo
12 12
  * Do not edit or add to this file if you wish to upgrade Payone to newer
13 13
  * versions in the future. If you wish to customize Payone for your
14 14
  * needs please refer to http://www.payone.de for more information.
15
-
16 15
  * @category        Payone
17 16
  * @package         Payone_Api
18 17
  * @subpackage      Request
@@ -254,7 +253,7 @@  discard block
 block discarded – undo
254 253
      */
255 254
     function getRatePay()
256 255
     {
257
-       return $this->ratePay;
256
+        return $this->ratePay;
258 257
     }
259 258
 
260 259
     /**
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Vauthorization.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
 {
35 35
     protected $request = Payone_Api_Enum_RequestType::VAUTHORIZATION;
36 36
 
37
-     /**
38
-     * Sub account ID
39
-     *
40
-     * @var int
41
-     */
37
+        /**
38
+         * Sub account ID
39
+         *
40
+         * @var int
41
+         */
42 42
     protected $aid = NULL;
43 43
     /**
44 44
      * @var string
Please login to merge, or discard this patch.