Completed
Push — master ( b80522...d46641 )
by Dmitry
04:54
created
src/Gateway.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,6 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * Set the unified purse.
58 58
      *
59
-     * @param string $purse merchant purse
60 59
      *
61 60
      * @return self
62 61
      */
@@ -90,7 +89,7 @@  discard block
 block discarded – undo
90 89
     /**
91 90
      * @param array $parameters
92 91
      *
93
-     * @return \Omnipay\ePayService\Message\PurchaseRequest
92
+     * @return \Omnipay\Common\Message\AbstractRequest
94 93
      */
95 94
     public function purchase(array $parameters = [])
96 95
     {
@@ -100,7 +99,7 @@  discard block
 block discarded – undo
100 99
     /**
101 100
      * @param array $parameters
102 101
      *
103
-     * @return \Omnipay\ePayService\Message\CompletePurchaseRequest
102
+     * @return \Omnipay\Common\Message\AbstractRequest
104 103
      */
105 104
     public function completePurchase(array $parameters = [])
106 105
     {
Please login to merge, or discard this patch.
src/Message/AbstractRequest.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * Set the purse.
33 33
      *
34
-     * @param string $purse purse
35 34
      *
36 35
      * @return self
37 36
      */
@@ -53,7 +52,6 @@  discard block
 block discarded – undo
53 52
     /**
54 53
      * Set the secret key.
55 54
      *
56
-     * @param string $key secret key
57 55
      *
58 56
      * @return self
59 57
      */
Please login to merge, or discard this patch.
src/Message/CompletePurchaseResponse.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@
 block discarded – undo
60 60
         return $fields;
61 61
     }
62 62
 
63
+    /**
64
+     * @return string
65
+     */
63 66
     public function getSignatureValue()
64 67
     {
65 68
         return $this->data['SignatureValue'];
Please login to merge, or discard this patch.