@@ -10,8 +10,6 @@ |
||
10 | 10 | |
11 | 11 | namespace hiqdev\php\billing; |
12 | 12 | |
13 | -use Money\Currency; |
|
14 | - |
|
15 | 13 | /** |
16 | 14 | * Purse. |
17 | 15 | * |
@@ -22,7 +22,6 @@ |
||
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 |
@@ -34,8 +34,7 @@ discard block |
||
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 |
||
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 | } |