@@ -15,5 +15,8 @@ |
||
15 | 15 | |
16 | 16 | interface ExpiredCartsRemoverInterface |
17 | 17 | { |
18 | + /** |
|
19 | + * @return void |
|
20 | + */ |
|
18 | 21 | public function remove(): void; |
19 | 22 | } |
@@ -17,5 +17,8 @@ |
||
17 | 17 | |
18 | 18 | interface PasswordUpdaterInterface |
19 | 19 | { |
20 | + /** |
|
21 | + * @return void |
|
22 | + */ |
|
20 | 23 | public function updatePassword(CredentialsHolderInterface $user): void; |
21 | 24 | } |
@@ -146,6 +146,7 @@ |
||
146 | 146 | |
147 | 147 | /** |
148 | 148 | * @Given the store (also )allows shipping with :name |
149 | + * @param string $name |
|
149 | 150 | */ |
150 | 151 | public function theStoreAllowsShippingMethodWithName($name) |
151 | 152 | { |
@@ -127,6 +127,7 @@ discard block |
||
127 | 127 | * @Given the store has a tax category :name with a code :code |
128 | 128 | * @Given the store has a tax category :name |
129 | 129 | * @Given the store has a tax category :name also |
130 | + * @param string $name |
|
130 | 131 | */ |
131 | 132 | public function theStoreHasTaxCategoryWithCode($name, $code = null) |
132 | 133 | { |
@@ -213,7 +214,7 @@ discard block |
||
213 | 214 | /** |
214 | 215 | * @param string $taxRateAmount |
215 | 216 | * |
216 | - * @return string |
|
217 | + * @return integer |
|
217 | 218 | */ |
218 | 219 | private function getAmountFromString($taxRateAmount) |
219 | 220 | { |
@@ -104,6 +104,9 @@ |
||
104 | 104 | return $webDirectory; |
105 | 105 | } |
106 | 106 | |
107 | + /** |
|
108 | + * @param string $webDirectory |
|
109 | + */ |
|
107 | 110 | private function assertFileContent($lines, $webDirectory): void |
108 | 111 | { |
109 | 112 | foreach ($lines as $line) { |
@@ -299,7 +299,7 @@ |
||
299 | 299 | |
300 | 300 | /** |
301 | 301 | * @param string $attributeName |
302 | - * @param string|array $selector |
|
302 | + * @param string $selector |
|
303 | 303 | * |
304 | 304 | * @return bool |
305 | 305 | * |
@@ -19,6 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | /** |
21 | 21 | * {@inheritdoc} |
22 | + * @param string $path |
|
22 | 23 | */ |
23 | 24 | public function get($path, $default = null) |
24 | 25 | { |
@@ -47,7 +47,7 @@ |
||
47 | 47 | /** |
48 | 48 | * Checks the existence of files or directories. |
49 | 49 | * |
50 | - * @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to check |
|
50 | + * @param string $files A filename, an array of files, or a \Traversable instance to check |
|
51 | 51 | * |
52 | 52 | * @return bool true if the file exists, false otherwise |
53 | 53 | */ |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @throws ExistingServiceException |
28 | 28 | * @throws \InvalidArgumentException |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function register($service, int $priority = 0): void; |
31 | 32 | |
@@ -33,6 +34,7 @@ discard block |
||
33 | 34 | * @param object $service |
34 | 35 | * |
35 | 36 | * @throws NonExistingServiceException |
37 | + * @return void |
|
36 | 38 | */ |
37 | 39 | public function unregister($service): void; |
38 | 40 |