@@ -18,7 +18,13 @@ |
||
18 | 18 | |
19 | 19 | interface ProductOptionValueTranslationInterface extends ResourceInterface, TranslationInterface |
20 | 20 | { |
21 | + /** |
|
22 | + * @return string |
|
23 | + */ |
|
21 | 24 | public function getValue(): ?string; |
22 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
23 | 29 | public function setValue(?string $value): void; |
24 | 30 | } |
@@ -19,19 +19,43 @@ |
||
19 | 19 | |
20 | 20 | interface ProductTranslationInterface extends SlugAwareInterface, ResourceInterface, TranslationInterface |
21 | 21 | { |
22 | + /** |
|
23 | + * @return string |
|
24 | + */ |
|
22 | 25 | public function getName(): ?string; |
23 | 26 | |
27 | + /** |
|
28 | + * @return void |
|
29 | + */ |
|
24 | 30 | public function setName(?string $name): void; |
25 | 31 | |
32 | + /** |
|
33 | + * @return string |
|
34 | + */ |
|
26 | 35 | public function getDescription(): ?string; |
27 | 36 | |
37 | + /** |
|
38 | + * @return void |
|
39 | + */ |
|
28 | 40 | public function setDescription(?string $description): void; |
29 | 41 | |
42 | + /** |
|
43 | + * @return string |
|
44 | + */ |
|
30 | 45 | public function getMetaKeywords(): ?string; |
31 | 46 | |
47 | + /** |
|
48 | + * @return void |
|
49 | + */ |
|
32 | 50 | public function setMetaKeywords(?string $metaKeywords): void; |
33 | 51 | |
52 | + /** |
|
53 | + * @return string |
|
54 | + */ |
|
34 | 55 | public function getMetaDescription(): ?string; |
35 | 56 | |
57 | + /** |
|
58 | + * @return void |
|
59 | + */ |
|
36 | 60 | public function setMetaDescription(?string $metaDescription): void; |
37 | 61 | } |
@@ -26,8 +26,14 @@ discard block |
||
26 | 26 | CodeAwareInterface, |
27 | 27 | TranslatableInterface |
28 | 28 | { |
29 | + /** |
|
30 | + * @return string |
|
31 | + */ |
|
29 | 32 | public function getName(): ?string; |
30 | 33 | |
34 | + /** |
|
35 | + * @return void |
|
36 | + */ |
|
31 | 37 | public function setName(?string $name): void; |
32 | 38 | |
33 | 39 | public function getDescriptor(): string; |
@@ -37,18 +43,36 @@ discard block |
||
37 | 43 | */ |
38 | 44 | public function getOptionValues(): Collection; |
39 | 45 | |
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
40 | 49 | public function addOptionValue(ProductOptionValueInterface $optionValue): void; |
41 | 50 | |
51 | + /** |
|
52 | + * @return void |
|
53 | + */ |
|
42 | 54 | public function removeOptionValue(ProductOptionValueInterface $optionValue): void; |
43 | 55 | |
44 | 56 | public function hasOptionValue(ProductOptionValueInterface $optionValue): bool; |
45 | 57 | |
58 | + /** |
|
59 | + * @return ProductInterface |
|
60 | + */ |
|
46 | 61 | public function getProduct(): ?ProductInterface; |
47 | 62 | |
63 | + /** |
|
64 | + * @return void |
|
65 | + */ |
|
48 | 66 | public function setProduct(?ProductInterface $product): void; |
49 | 67 | |
68 | + /** |
|
69 | + * @return integer |
|
70 | + */ |
|
50 | 71 | public function getPosition(): ?int; |
51 | 72 | |
73 | + /** |
|
74 | + * @return void |
|
75 | + */ |
|
52 | 76 | public function setPosition(?int $position): void; |
53 | 77 | |
54 | 78 | /** |
@@ -23,5 +23,8 @@ |
||
23 | 23 | */ |
24 | 24 | public function getName(): ?string; |
25 | 25 | |
26 | + /** |
|
27 | + * @return void |
|
28 | + */ |
|
26 | 29 | public function setName(?string $name): void; |
27 | 30 | } |