Completed
Push — master ( 663ac6...abd7c7 )
by Andrii
01:58
created
src/action/ActionInterface.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,8 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * Calculate charge for given price.
36
-     * @param PriceInterface $action
37
-     * @return ChargeInterface
36
+     * @return null|\hiqdev\php\billing\charge\Charge
38 37
      */
39 38
     public function calculateCharge(PriceInterface $quantity);
40 39
 
@@ -52,19 +51,19 @@  discard block
 block discarded – undo
52 51
 
53 52
     /**
54 53
      * Returns type ot this action.
55
-     * @return TypeInterface
54
+     * @return \hiqdev\php\billing\type\TypeInterface
56 55
      */
57 56
     public function getType();
58 57
 
59 58
     /**
60 59
      * Returns quantity ot this action.
61
-     * @return QuantityInterface
60
+     * @return \hiqdev\php\units\QuantityInterface
62 61
      */
63 62
     public function getQuantity();
64 63
 
65 64
     /**
66 65
      * Returns time ot this action.
67
-     * @return DateTimeImmutable
66
+     * @return \DateTimeImmutable
68 67
      */
69 68
     public function getTime();
70 69
 }
Please login to merge, or discard this patch.