Completed
Push — master ( d259e5...b1e6cd )
by raphael
03:03
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.
src/StripeConnect.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,8 +73,8 @@
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * @param $user
76
-     * @param $id_key
77
-     * @param $callback
76
+     * @param string $id_key
77
+     * @param \Closure $callback
78 78
      * @return Stripe
79 79
      */
80 80
     private static function create($user, $id_key, $callback) {
Please login to merge, or discard this patch.