@@ -199,6 +199,7 @@ |
||
199 | 199 | |
200 | 200 | /** |
201 | 201 | * {@inheritdoc} |
202 | + * @param string $name |
|
202 | 203 | */ |
203 | 204 | protected function getElement($name, array $parameters = []) |
204 | 205 | { |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param CurrencyInterface $currency |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setBaseCurrency(CurrencyInterface $currency); |
38 | 39 | |
@@ -43,6 +44,7 @@ discard block |
||
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param LocaleInterface $locale |
47 | + * @return void |
|
46 | 48 | */ |
47 | 49 | public function setDefaultLocale(LocaleInterface $locale); |
48 | 50 | |
@@ -53,6 +55,7 @@ discard block |
||
53 | 55 | |
54 | 56 | /** |
55 | 57 | * @param ZoneInterface $defaultTaxZone |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function setDefaultTaxZone(ZoneInterface $defaultTaxZone); |
58 | 61 | |
@@ -63,6 +66,7 @@ discard block |
||
63 | 66 | |
64 | 67 | /** |
65 | 68 | * @param string $taxCalculationStrategy |
69 | + * @return void |
|
66 | 70 | */ |
67 | 71 | public function setTaxCalculationStrategy($taxCalculationStrategy); |
68 | 72 | |
@@ -73,6 +77,7 @@ discard block |
||
73 | 77 | |
74 | 78 | /** |
75 | 79 | * @param string $themeName |
80 | + * @return void |
|
76 | 81 | */ |
77 | 82 | public function setThemeName($themeName); |
78 | 83 | |
@@ -83,6 +88,7 @@ discard block |
||
83 | 88 | |
84 | 89 | /** |
85 | 90 | * @param string $contactEmail |
91 | + * @return void |
|
86 | 92 | */ |
87 | 93 | public function setContactEmail($contactEmail); |
88 | 94 | |
@@ -93,6 +99,7 @@ discard block |
||
93 | 99 | |
94 | 100 | /** |
95 | 101 | * @param bool $skippingShippingStepAllowed |
102 | + * @return void |
|
96 | 103 | */ |
97 | 104 | public function setSkippingShippingStepAllowed($skippingShippingStepAllowed); |
98 | 105 | |
@@ -103,6 +110,7 @@ discard block |
||
103 | 110 | |
104 | 111 | /** |
105 | 112 | * @param bool $skippingPaymentStepAllowed |
113 | + * @return void |
|
106 | 114 | */ |
107 | 115 | public function setSkippingPaymentStepAllowed($skippingPaymentStepAllowed); |
108 | 116 | |
@@ -113,6 +121,7 @@ discard block |
||
113 | 121 | |
114 | 122 | /** |
115 | 123 | * @param bool $accountVerificationRequired |
124 | + * @return void |
|
116 | 125 | */ |
117 | 126 | public function setAccountVerificationRequired($accountVerificationRequired); |
118 | 127 | } |
@@ -44,11 +44,13 @@ |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * @param ImageInterface $image |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function addImage(ProductImageInterface $image); |
49 | 50 | |
50 | 51 | /** |
51 | 52 | * @param ImageInterface $image |
53 | + * @return void |
|
52 | 54 | */ |
53 | 55 | public function removeImage(ProductImageInterface $image); |
54 | 56 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | /** |
58 | 58 | * @param string $path |
59 | 59 | * |
60 | - * @return \Iterator|SplFileInfo[] |
|
60 | + * @return \Symfony\Component\Finder\Finder |
|
61 | 61 | */ |
62 | 62 | private function getFiles($path) |
63 | 63 | { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | public function getDriver(); |
50 | 50 | |
51 | 51 | /** |
52 | - * @return ?string |
|
52 | + * @return string |
|
53 | 53 | */ |
54 | 54 | public function getTemplatesNamespace(); |
55 | 55 |