Completed
Push — master ( 6584d5...14a2bb )
by Andrii
08:21
created
src/_wrong_ideas/purse/Purse.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
 
11 11
 namespace hiqdev\php\billing;
12 12
 
13
-use Money\Currency;
14
-
15 13
 /**
16 14
  * Purse.
17 15
  *
Please login to merge, or discard this patch.
src/action/SimpleAction.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 class SimpleAction extends AbstractAction
23 23
 {
24 24
     /**
25
-     * @param mixed $id
26 25
      * @param CustomerInterface $customer
27 26
      * @param TargetInterface $target
28 27
      * @param QuantityInterface $quantity
Please login to merge, or discard this patch.
src/action/ActionInterface.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * Calculate charge for given price.
37
-     * @param PriceInterface $action
38
-     * @return ChargeInterface
37
+     * @return null|\hiqdev\php\billing\charge\Charge
39 38
      */
40 39
     public function calculateCharge(PriceInterface $quantity);
41 40
 
@@ -53,13 +52,13 @@  discard block
 block discarded – undo
53 52
 
54 53
     /**
55 54
      * Returns quantity ot this action.
56
-     * @return QuantityInterface
55
+     * @return \hiqdev\php\units\QuantityInterface
57 56
      */
58 57
     public function getQuantity();
59 58
 
60 59
     /**
61 60
      * Returns time ot this action.
62
-     * @return DateTime
61
+     * @return \DateTime
63 62
      */
64 63
     public function getTime();
65 64
 }
Please login to merge, or discard this patch.