@@ -29,6 +29,7 @@ |
||
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @param ShipmentInterface|null $shipment |
32 | + * @return void |
|
32 | 33 | */ |
33 | 34 | public function setShipment(?ShipmentInterface $shipment): void; |
34 | 35 |
@@ -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 | } |
@@ -35,6 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @param string|null $title |
38 | + * @return void |
|
38 | 39 | */ |
39 | 40 | public function setTitle(?string $title): void; |
40 | 41 | |
@@ -45,6 +46,7 @@ discard block |
||
45 | 46 | |
46 | 47 | /** |
47 | 48 | * @param string|null $description |
49 | + * @return void |
|
48 | 50 | */ |
49 | 51 | public function setDescription(?string $description): void; |
50 | 52 | |
@@ -55,11 +57,13 @@ discard block |
||
55 | 57 | |
56 | 58 | /** |
57 | 59 | * @param ThemeAuthor $author |
60 | + * @return void |
|
58 | 61 | */ |
59 | 62 | public function addAuthor(ThemeAuthor $author): void; |
60 | 63 | |
61 | 64 | /** |
62 | 65 | * @param ThemeAuthor $author |
66 | + * @return void |
|
63 | 67 | */ |
64 | 68 | public function removeAuthor(ThemeAuthor $author): void; |
65 | 69 | |
@@ -70,11 +74,13 @@ discard block |
||
70 | 74 | |
71 | 75 | /** |
72 | 76 | * @param ThemeInterface $theme |
77 | + * @return void |
|
73 | 78 | */ |
74 | 79 | public function addParent(ThemeInterface $theme): void; |
75 | 80 | |
76 | 81 | /** |
77 | 82 | * @param ThemeInterface $theme |
83 | + * @return void |
|
78 | 84 | */ |
79 | 85 | public function removeParent(ThemeInterface $theme): void; |
80 | 86 | |
@@ -85,11 +91,13 @@ discard block |
||
85 | 91 | |
86 | 92 | /** |
87 | 93 | * @param ThemeScreenshot $screenshot |
94 | + * @return void |
|
88 | 95 | */ |
89 | 96 | public function addScreenshot(ThemeScreenshot $screenshot): void; |
90 | 97 | |
91 | 98 | /** |
92 | 99 | * @param ThemeScreenshot $screenshot |
100 | + * @return void |
|
93 | 101 | */ |
94 | 102 | public function removeScreenshot(ThemeScreenshot $screenshot): void; |
95 | 103 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * @param string $path |
60 | 60 | * |
61 | - * @return iterable|SplFileInfo[] |
|
61 | + * @return \Symfony\Component\Finder\Finder |
|
62 | 62 | */ |
63 | 63 | private function getFiles(string $path): iterable |
64 | 64 | { |