Completed
Push — master ( 845fca...f98298 )
by Andrii
02:18
created
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.
src/plan/PlanRepositoryInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * Finds suitable plans for given order: customer + actions.
29
-     * @param ActionInterface $action
30 29
      * @return PlanInterface[] array: actionKey => plan
31 30
      */
32 31
     public function findByOrder(OrderInterface $order);
Please login to merge, or discard this patch.
src/type/Type.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return string
45
+     * @return boolean
46 46
      */
47 47
     public function equals(TypeInterface $other)
48 48
     {
Please login to merge, or discard this patch.