Passed
Pull Request — master (#4)
by Raúl
02:04
created
test/configure/ConfigureTest.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
  * @package Test\Configure
12 12
  *
13 13
  * @group oscommerce-configure
14
-
15 14
  */
16 15
 class ConfigureTest extends PagantisOscommerceTest
17 16
 {
Please login to merge, or discard this patch.
catalog/ext/modules/payment/pagantis/configController.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -9,20 +9,20 @@
 block discarded – undo
9 9
  * @var array $defaultConfigs
10 10
  */
11 11
 $defaultConfigs = array('PMT_TITLE'=>'Instant Financing',
12
-                               'PMT_SIMULATOR_DISPLAY_TYPE'=>'pmtSDK.simulator.types.SIMPLE',
13
-                               'PMT_SIMULATOR_DISPLAY_SKIN'=>'pmtSDK.simulator.skins.BLUE',
14
-                               'PMT_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons',
15
-                               'PMT_SIMULATOR_START_INSTALLMENTS'=>3,
16
-                               'PMT_SIMULATOR_MAX_INSTALLMENTS'=>12,
17
-                               'PMT_SIMULATOR_CSS_POSITION_SELECTOR'=>'default',
18
-                               'PMT_SIMULATOR_DISPLAY_CSS_POSITION'=>'pmtSDK.simulator.positions.INNER',
19
-                               'PMT_SIMULATOR_CSS_PRICE_SELECTOR'=>'default',
20
-                               'PMT_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default',
21
-                               'PMT_FORM_DISPLAY_TYPE'=>0,
22
-                               'PMT_DISPLAY_MIN_AMOUNT'=>1,
23
-                               'PMT_URL_OK'=>'',
24
-                               'PMT_URL_KO'=>'',
25
-                               'PMT_TITLE_EXTRA' => 'Paga hasta en 12 cómodas cuotas con Paga+Tarde. Solicitud totalmente 
12
+                                'PMT_SIMULATOR_DISPLAY_TYPE'=>'pmtSDK.simulator.types.SIMPLE',
13
+                                'PMT_SIMULATOR_DISPLAY_SKIN'=>'pmtSDK.simulator.skins.BLUE',
14
+                                'PMT_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons',
15
+                                'PMT_SIMULATOR_START_INSTALLMENTS'=>3,
16
+                                'PMT_SIMULATOR_MAX_INSTALLMENTS'=>12,
17
+                                'PMT_SIMULATOR_CSS_POSITION_SELECTOR'=>'default',
18
+                                'PMT_SIMULATOR_DISPLAY_CSS_POSITION'=>'pmtSDK.simulator.positions.INNER',
19
+                                'PMT_SIMULATOR_CSS_PRICE_SELECTOR'=>'default',
20
+                                'PMT_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default',
21
+                                'PMT_FORM_DISPLAY_TYPE'=>0,
22
+                                'PMT_DISPLAY_MIN_AMOUNT'=>1,
23
+                                'PMT_URL_OK'=>'',
24
+                                'PMT_URL_KO'=>'',
25
+                                'PMT_TITLE_EXTRA' => 'Paga hasta en 12 cómodas cuotas con Paga+Tarde. Solicitud totalmente 
26 26
                             online y sin papeleos,¡y la respuesta es inmediata!'
27 27
 );
28 28
 
Please login to merge, or discard this patch.
catalog/includes/modules/payment/pagantis.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
     );
50 50
 
51 51
     /**
52
-    * Constructor
53
-    */
52
+     * Constructor
53
+     */
54 54
     public function __construct()
55 55
     {
56 56
         $this->version = '8.0.0';
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
      *
87 87
      **************/
88 88
     /**
89
-    * Here you can implement using payment zones (refer to standard PayPal module as reference)
90
-    */
89
+     * Here you can implement using payment zones (refer to standard PayPal module as reference)
90
+     */
91 91
     public function update_status()
92 92
     {
93 93
 
@@ -318,10 +318,10 @@  discard block
 block discarded – undo
318 318
     }
319 319
 
320 320
     /**
321
-    * Post-processing activities
322
-    *
323
-    * @return boolean
324
-    */
321
+     * Post-processing activities
322
+     *
323
+     * @return boolean
324
+     */
325 325
     public function after_process()
326 326
     {
327 327
         $this->pgNotify->confirmInformation();
@@ -434,16 +434,16 @@  discard block
 block discarded – undo
434 434
     }
435 435
 
436 436
     /**
437
-    * Internal list of configuration keys used for configuration of the module
438
-    *
439
-    * @return array
440
-    */
437
+     * Internal list of configuration keys used for configuration of the module
438
+     *
439
+     * @return array
440
+     */
441 441
     public function keys()
442 442
     {
443 443
         return array('MODULE_PAYMENT_PAGANTIS_STATUS',
444
-           'MODULE_PAYMENT_PAGANTIS_PK',
445
-           'MODULE_PAYMENT_PAGANTIS_SK'
446
-           );
444
+            'MODULE_PAYMENT_PAGANTIS_PK',
445
+            'MODULE_PAYMENT_PAGANTIS_SK'
446
+            );
447 447
     }
448 448
 
449 449
     /**
Please login to merge, or discard this patch.