@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string|null $name |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setName(?string $name): void; |
34 | 35 | |
@@ -39,6 +40,7 @@ discard block |
||
39 | 40 | |
40 | 41 | /** |
41 | 42 | * @param string|null $description |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function setDescription(?string $description): void; |
44 | 46 | } |
@@ -29,6 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param string|null $name |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setName(?string $name): void; |
34 | 35 | |
@@ -39,6 +40,7 @@ discard block |
||
39 | 40 | |
40 | 41 | /** |
41 | 42 | * @param string|null $description |
43 | + * @return void |
|
42 | 44 | */ |
43 | 45 | public function setDescription(?string $description): void; |
44 | 46 | } |
@@ -22,6 +22,7 @@ |
||
22 | 22 | { |
23 | 23 | /** |
24 | 24 | * @param OutputInterface $output |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function setOutput(OutputInterface $output): void; |
27 | 28 | } |
@@ -25,6 +25,7 @@ |
||
25 | 25 | { |
26 | 26 | /** |
27 | 27 | * @param ArrayNodeDefinition $node |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function buildConfiguration(ArrayNodeDefinition $node): void; |
30 | 31 |
@@ -25,16 +25,19 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param array $configuration |
28 | + * @return void |
|
28 | 29 | */ |
29 | 30 | public function add(array $configuration): void; |
30 | 31 | |
31 | 32 | /** |
32 | 33 | * @param string $themeName |
34 | + * @return void |
|
33 | 35 | */ |
34 | 36 | public function remove(string $themeName): void; |
35 | 37 | |
36 | 38 | /** |
37 | 39 | * Clear currently used configurations storage. |
40 | + * @return void |
|
38 | 41 | */ |
39 | 42 | public function clear(): void; |
40 | 43 | } |
@@ -24,6 +24,7 @@ |
||
24 | 24 | * @param ThemeInterface $theme |
25 | 25 | * |
26 | 26 | * @throws CircularDependencyFoundException |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function check(ThemeInterface $theme): void; |
29 | 30 | } |
@@ -259,6 +259,7 @@ |
||
259 | 259 | * @Then the product :productName should appear in the store |
260 | 260 | * @Then the product :productName should be in the shop |
261 | 261 | * @Then this product should still be named :productName |
262 | + * @param string|null $productName |
|
262 | 263 | */ |
263 | 264 | public function theProductShouldAppearInTheShop($productName) |
264 | 265 | { |
@@ -24,11 +24,13 @@ |
||
24 | 24 | { |
25 | 25 | /** |
26 | 26 | * @param ReviewableInterface $reviewSubject |
27 | + * @return void |
|
27 | 28 | */ |
28 | 29 | public function update(ReviewableInterface $reviewSubject): void; |
29 | 30 | |
30 | 31 | /** |
31 | 32 | * @param ReviewInterface $review |
33 | + * @return void |
|
32 | 34 | */ |
33 | 35 | public function updateFromReview(ReviewInterface $review): void; |
34 | 36 | } |
@@ -32,11 +32,13 @@ discard block |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param ReviewInterface $review |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function addReview(ReviewInterface $review): void; |
37 | 38 | |
38 | 39 | /** |
39 | 40 | * @param ReviewInterface $review |
41 | + * @return void |
|
40 | 42 | */ |
41 | 43 | public function removeReview(ReviewInterface $review): void; |
42 | 44 | |
@@ -47,6 +49,7 @@ discard block |
||
47 | 49 | |
48 | 50 | /** |
49 | 51 | * @param float $averageRating |
52 | + * @return void |
|
50 | 53 | */ |
51 | 54 | public function setAverageRating(float $averageRating): void; |
52 | 55 | } |