Completed
Push — master ( ca6320...294f84 )
by raphael
01:58
created
src/Transaction.php 2 patches
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.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,10 +3,6 @@
 block discarded – undo
3 3
 
4 4
 namespace Rap2hpoutre\LaravelStripeConnect;
5 5
 
6
-use Stripe\Account as StripeAccount;
7
-use Stripe\Customer;
8
-use Stripe\Stripe as StripeBase;
9
-
10 6
 
11 7
 class Transaction
12 8
 {
Please login to merge, or discard this patch.