Completed
Pull Request — master (#6)
by raphael
02:50
created
src/Transaction.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -34,6 +34,10 @@  discard block
 block discarded – undo
34 34
         return $this;
35 35
     }
36 36
 
37
+    /**
38
+     * @param integer $value
39
+     * @param string $currency
40
+     */
37 41
     public function amount($value, $currency)
38 42
     {
39 43
         $this->value = $value;
@@ -41,6 +45,9 @@  discard block
 block discarded – undo
41 45
         return $this;
42 46
     }
43 47
 
48
+    /**
49
+     * @param integer $amount
50
+     */
44 51
     public function fee($amount)
45 52
     {
46 53
         $this->fee = $amount;
Please login to merge, or discard this patch.