@@ -23,6 +23,7 @@ |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @param OrderInterface $order |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function setOrder(OrderInterface $order = null); |
28 | 29 | } |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param int $unitPrice |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setUnitPrice($unitPrice); |
38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * Recalculate totals. Should be used after every unit change. |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function recalculateUnitsTotal(); |
48 | 50 | |
@@ -63,6 +65,7 @@ discard block |
||
63 | 65 | |
64 | 66 | /** |
65 | 67 | * @param bool $immutable |
68 | + * @return void |
|
66 | 69 | */ |
67 | 70 | public function setImmutable($immutable); |
68 | 71 | |
@@ -80,11 +83,13 @@ discard block |
||
80 | 83 | |
81 | 84 | /** |
82 | 85 | * @param OrderItemUnitInterface $itemUnit |
86 | + * @return void |
|
83 | 87 | */ |
84 | 88 | public function addUnit(OrderItemUnitInterface $itemUnit); |
85 | 89 | |
86 | 90 | /** |
87 | 91 | * @param OrderItemUnitInterface $itemUnit |
92 | + * @return void |
|
88 | 93 | */ |
89 | 94 | public function removeUnit(OrderItemUnitInterface $itemUnit); |
90 | 95 | |
@@ -97,13 +102,14 @@ discard block |
||
97 | 102 | |
98 | 103 | /** |
99 | 104 | * @param string|null $type |
105 | + * @return void |
|
100 | 106 | */ |
101 | 107 | public function removeAdjustmentsRecursively($type = null); |
102 | 108 | |
103 | 109 | /** |
104 | 110 | * @param string|null $type |
105 | 111 | * |
106 | - * @return array |
|
112 | + * @return integer |
|
107 | 113 | */ |
108 | 114 | public function getAdjustmentsTotalRecursively($type = null); |
109 | 115 | } |
@@ -21,6 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * @param OrderItemInterface $orderItem |
23 | 23 | * @param int $targetQuantity |
24 | + * @return void |
|
24 | 25 | */ |
25 | 26 | public function modify(OrderItemInterface $orderItem, $targetQuantity); |
26 | 27 | } |
@@ -27,11 +27,13 @@ |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param PaymentInterface $payment |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function addPayment(PaymentInterface $payment); |
32 | 33 | |
33 | 34 | /** |
34 | 35 | * @param PaymentInterface $payment |
36 | + * @return void |
|
35 | 37 | */ |
36 | 38 | public function removePayment(PaymentInterface $payment); |
37 | 39 |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param string $name |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function setName($name); |
31 | 32 | |
@@ -36,6 +37,7 @@ discard block |
||
36 | 37 | |
37 | 38 | /** |
38 | 39 | * @param string $description |
40 | + * @return void |
|
39 | 41 | */ |
40 | 42 | public function setDescription($description); |
41 | 43 | |
@@ -46,6 +48,7 @@ discard block |
||
46 | 48 | |
47 | 49 | /** |
48 | 50 | * @param string $metaKeywords |
51 | + * @return void |
|
49 | 52 | */ |
50 | 53 | public function setMetaKeywords($metaKeywords); |
51 | 54 | |
@@ -56,6 +59,7 @@ discard block |
||
56 | 59 | |
57 | 60 | /** |
58 | 61 | * @param string $metaDescription |
62 | + * @return void |
|
59 | 63 | */ |
60 | 64 | public function setMetaDescription($metaDescription); |
61 | 65 | } |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | * |
28 | 28 | * @throws ExistingServiceException |
29 | 29 | * @throws \InvalidArgumentException |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function register($identifier, $service); |
32 | 33 | |
@@ -34,6 +35,7 @@ discard block |
||
34 | 35 | * @param string $identifier |
35 | 36 | * |
36 | 37 | * @throws NonExistingServiceException |
38 | + * @return void |
|
37 | 39 | */ |
38 | 40 | public function unregister($identifier); |
39 | 41 |
@@ -39,12 +39,14 @@ |
||
39 | 39 | |
40 | 40 | /** |
41 | 41 | * @param MetadataInterface $metadata |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function add(MetadataInterface $metadata); |
44 | 45 | |
45 | 46 | /** |
46 | 47 | * @param string $alias |
47 | 48 | * @param array $configuration |
49 | + * @return void |
|
48 | 50 | */ |
49 | 51 | public function addFromAliasAndConfiguration($alias, array $configuration); |
50 | 52 | } |
@@ -23,6 +23,7 @@ |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @param string $code |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function setCode($code); |
28 | 29 | } |
@@ -23,6 +23,7 @@ |
||
23 | 23 | |
24 | 24 | /** |
25 | 25 | * @param string $slug |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function setSlug($slug = null); |
28 | 29 | } |