@@ -20,12 +20,13 @@ |
||
20 | 20 | interface TaxonInterface extends VariableTaxonInterface |
21 | 21 | { |
22 | 22 | /** |
23 | - * @return Collection|ProductInterface[] |
|
23 | + * @return \Doctrine\Common\Collections\ArrayCollection |
|
24 | 24 | */ |
25 | 25 | public function getProducts(); |
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param ProductInterface[] $products |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function setProducts($products); |
31 | 32 | } |
@@ -23,6 +23,9 @@ |
||
23 | 23 | */ |
24 | 24 | interface ProductRepositoryInterface extends BaseProductRepositoryInterface |
25 | 25 | { |
26 | + /** |
|
27 | + * @return \Doctrine\ORM\QueryBuilder |
|
28 | + */ |
|
26 | 29 | public function createListQueryBuilder(); |
27 | 30 | |
28 | 31 | /** |
@@ -17,11 +17,13 @@ |
||
17 | 17 | { |
18 | 18 | /** |
19 | 19 | * @param ImageInterface $image |
20 | + * @return void |
|
20 | 21 | */ |
21 | 22 | public function upload(ImageInterface $image); |
22 | 23 | |
23 | 24 | /** |
24 | 25 | * @param string $path |
26 | + * @return boolean |
|
25 | 27 | */ |
26 | 28 | public function remove($path); |
27 | 29 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | { |
22 | 22 | /** |
23 | 23 | * @param Grid $grid |
24 | - * @param array $parameters |
|
24 | + * @param Parameters $parameters |
|
25 | 25 | * |
26 | 26 | * @return mixed |
27 | 27 | */ |
@@ -21,8 +21,9 @@ |
||
21 | 21 | /** |
22 | 22 | * @param DataSourceInterface $dataSource |
23 | 23 | * @param string $name |
24 | - * @param mixed $data |
|
24 | + * @param string $data |
|
25 | 25 | * @param array $options |
26 | + * @return void |
|
26 | 27 | */ |
27 | 28 | public function apply(DataSourceInterface $dataSource, $name, $data, array $options); |
28 | 29 | } |
@@ -41,6 +41,8 @@ discard block |
||
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @param int |
44 | + * @param integer $onHold |
|
45 | + * @return void |
|
44 | 46 | */ |
45 | 47 | public function setOnHold($onHold); |
46 | 48 | |
@@ -51,6 +53,7 @@ discard block |
||
51 | 53 | |
52 | 54 | /** |
53 | 55 | * @param int $onHand |
56 | + * @return void |
|
54 | 57 | */ |
55 | 58 | public function setOnHand($onHand); |
56 | 59 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
61 | - * @return array |
|
61 | + * @return string[] |
|
62 | 62 | */ |
63 | 63 | public function getRecipients() |
64 | 64 | { |
@@ -41,7 +41,6 @@ |
||
41 | 41 | protected $configuration; |
42 | 42 | |
43 | 43 | /** |
44 | - * @param FactoryInterface $factory |
|
45 | 44 | * @param RepositoryInterface $emailRepository |
46 | 45 | * @param array $configuration |
47 | 46 | */ |
@@ -27,6 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param AdjustableInterface|null $adjustable |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function setAdjustable(AdjustableInterface $adjustable = null); |
32 | 33 | |
@@ -37,6 +38,7 @@ discard block |
||
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param string $type |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function setType($type); |
42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param string $label |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function setLabel($label); |
52 | 55 | |
@@ -57,6 +60,7 @@ discard block |
||
57 | 60 | |
58 | 61 | /** |
59 | 62 | * @param int $amount |
63 | + * @return void |
|
60 | 64 | */ |
61 | 65 | public function setAmount($amount); |
62 | 66 | |
@@ -67,6 +71,7 @@ discard block |
||
67 | 71 | |
68 | 72 | /** |
69 | 73 | * @param bool $neutral |
74 | + * @return void |
|
70 | 75 | */ |
71 | 76 | public function setNeutral($neutral); |
72 | 77 | |
@@ -93,7 +98,13 @@ discard block |
||
93 | 98 | */ |
94 | 99 | public function isLocked(); |
95 | 100 | |
101 | + /** |
|
102 | + * @return void |
|
103 | + */ |
|
96 | 104 | public function lock(); |
97 | 105 | |
106 | + /** |
|
107 | + * @return void |
|
108 | + */ |
|
98 | 109 | public function unlock(); |
99 | 110 | } |