Completed
Push — 2341 ( 94e9e9 )
by Harald
18:30
created
catalog/includes/modules/payment/paypal_pro_payflow_ec.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -245,6 +245,9 @@  discard block
 block discarded – undo
245 245
       return $this->_check;
246 246
     }
247 247
 
248
+    /**
249
+     * @param string $parameter
250
+     */
248 251
     function install($parameter = null) {
249 252
       $params = $this->getParams();
250 253
 
@@ -377,6 +380,10 @@  discard block
 block discarded – undo
377 380
       return $params;
378 381
     }
379 382
 
383
+    /**
384
+     * @param string $url
385
+     * @param string $parameters
386
+     */
380 387
     function sendTransactionToGateway($url, $parameters) {
381 388
       global $cartID, $order;
382 389
 
Please login to merge, or discard this patch.
catalog/includes/modules/payment/paypal_standard.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -708,6 +708,9 @@  discard block
 block discarded – undo
708 708
       return $this->_check;
709 709
     }
710 710
 
711
+    /**
712
+     * @param string $parameter
713
+     */
711 714
     function install($parameter = null) {
712 715
       $params = $this->getParams();
713 716
 
@@ -885,6 +888,9 @@  discard block
 block discarded – undo
885 888
       return $params;
886 889
     }
887 890
 
891
+    /**
892
+     * @param string $parameters
893
+     */
888 894
     function sendTransactionToGateway($url, $parameters) {
889 895
       $server = parse_url($url);
890 896
 
Please login to merge, or discard this patch.
catalog/includes/modules/payment/rbsworldpay_hosted.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -547,6 +547,9 @@
 block discarded – undo
547 547
       return $this->_check;
548 548
     }
549 549
 
550
+    /**
551
+     * @param string $parameter
552
+     */
550 553
     function install($parameter = null) {
551 554
       $params = $this->getParams();
552 555
 
Please login to merge, or discard this patch.
catalog/includes/modules/payment/sage_pay_direct.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -679,6 +679,9 @@  discard block
 block discarded – undo
679 679
       return $this->_check;
680 680
     }
681 681
 
682
+    /**
683
+     * @param string $parameter
684
+     */
682 685
     function install($parameter = null) {
683 686
       $params = $this->getParams();
684 687
 
@@ -874,6 +877,10 @@  discard block
 block discarded – undo
874 877
       return $params;
875 878
     }
876 879
 
880
+    /**
881
+     * @param string $url
882
+     * @param string $parameters
883
+     */
877 884
     function sendTransactionToGateway($url, $parameters) {
878 885
       $server = parse_url($url);
879 886
 
@@ -992,6 +999,9 @@  discard block
 block discarded – undo
992 999
       return !empty($this->_cards);
993 1000
     }
994 1001
 
1002
+    /**
1003
+     * @param string $key
1004
+     */
995 1005
     function isCard($key) {
996 1006
       if (!isset($this->_cards)) {
997 1007
         $this->getCardTypes();
Please login to merge, or discard this patch.
catalog/includes/modules/payment/sage_pay_form.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -344,6 +344,9 @@  discard block
 block discarded – undo
344 344
       return $this->_check;
345 345
     }
346 346
 
347
+    /**
348
+     * @param string $parameter
349
+     */
347 350
     function install($parameter = null) {
348 351
       $params = $this->getParams();
349 352
 
@@ -513,6 +516,9 @@  discard block
 block discarded – undo
513 516
       return $order_total_array;
514 517
     }
515 518
 
519
+    /**
520
+     * @param string $string
521
+     */
516 522
     function encryptParams($string) {
517 523
 // pad pkcs5
518 524
       $blocksize = 16;
Please login to merge, or discard this patch.