Completed
Push — master ( 29feec...cc22a3 )
by raphael
04:59
created
src/Transaction.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * The amount of the transaction.
62 62
      *
63
-     * @param $value
64
-     * @param $currency
63
+     * @param integer $value
64
+     * @param string $currency
65 65
      * @return $this
66 66
      */
67 67
     public function amount($value, $currency)
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * Take your fees here.
76 76
      *
77
-     * @param $amount
77
+     * @param integer $amount
78 78
      * @return $this
79 79
      */
80 80
     public function fee($amount)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 
4 4
 namespace Rap2hpoutre\LaravelStripeConnect;
5 5
 
6
-use Stripe\Account as StripeAccount;
7 6
 use Stripe\Charge;
8 7
 use Stripe\Customer;
9
-use Stripe\Stripe as StripeBase;
10 8
 
11 9
 
12 10
 /**
Please login to merge, or discard this patch.