@@ -32,6 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param string|null $title |
35 | + * @return void |
|
35 | 36 | */ |
36 | 37 | public function setTitle(?string $title): void; |
37 | 38 | |
@@ -42,6 +43,7 @@ discard block |
||
42 | 43 | |
43 | 44 | /** |
44 | 45 | * @param string|null $description |
46 | + * @return void |
|
45 | 47 | */ |
46 | 48 | public function setDescription(?string $description): void; |
47 | 49 | |
@@ -52,11 +54,13 @@ discard block |
||
52 | 54 | |
53 | 55 | /** |
54 | 56 | * @param ThemeAuthor $author |
57 | + * @return void |
|
55 | 58 | */ |
56 | 59 | public function addAuthor(ThemeAuthor $author): void; |
57 | 60 | |
58 | 61 | /** |
59 | 62 | * @param ThemeAuthor $author |
63 | + * @return void |
|
60 | 64 | */ |
61 | 65 | public function removeAuthor(ThemeAuthor $author): void; |
62 | 66 | |
@@ -67,11 +71,13 @@ discard block |
||
67 | 71 | |
68 | 72 | /** |
69 | 73 | * @param ThemeInterface $theme |
74 | + * @return void |
|
70 | 75 | */ |
71 | 76 | public function addParent(self $theme): void; |
72 | 77 | |
73 | 78 | /** |
74 | 79 | * @param ThemeInterface $theme |
80 | + * @return void |
|
75 | 81 | */ |
76 | 82 | public function removeParent(self $theme): void; |
77 | 83 | |
@@ -82,11 +88,13 @@ discard block |
||
82 | 88 | |
83 | 89 | /** |
84 | 90 | * @param ThemeScreenshot $screenshot |
91 | + * @return void |
|
85 | 92 | */ |
86 | 93 | public function addScreenshot(ThemeScreenshot $screenshot): void; |
87 | 94 | |
88 | 95 | /** |
89 | 96 | * @param ThemeScreenshot $screenshot |
97 | + * @return void |
|
90 | 98 | */ |
91 | 99 | public function removeScreenshot(ThemeScreenshot $screenshot): void; |
92 | 100 | } |
@@ -39,6 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | /** |
41 | 41 | * @param TaxonInterface|null $taxon |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function setParent(?self $taxon): void; |
44 | 45 | |
@@ -66,11 +67,13 @@ discard block |
||
66 | 67 | |
67 | 68 | /** |
68 | 69 | * @param TaxonInterface $taxon |
70 | + * @return void |
|
69 | 71 | */ |
70 | 72 | public function addChild(self $taxon): void; |
71 | 73 | |
72 | 74 | /** |
73 | 75 | * @param TaxonInterface $taxon |
76 | + * @return void |
|
74 | 77 | */ |
75 | 78 | public function removeChild(self $taxon): void; |
76 | 79 | |
@@ -81,6 +84,7 @@ discard block |
||
81 | 84 | |
82 | 85 | /** |
83 | 86 | * @param string|null $name |
87 | + * @return void |
|
84 | 88 | */ |
85 | 89 | public function setName(?string $name): void; |
86 | 90 | |
@@ -91,6 +95,7 @@ discard block |
||
91 | 95 | |
92 | 96 | /** |
93 | 97 | * @param string|null $description |
98 | + * @return void |
|
94 | 99 | */ |
95 | 100 | public function setDescription(?string $description): void; |
96 | 101 | |
@@ -101,6 +106,7 @@ discard block |
||
101 | 106 | |
102 | 107 | /** |
103 | 108 | * @param int|null $left |
109 | + * @return void |
|
104 | 110 | */ |
105 | 111 | public function setLeft(?int $left): void; |
106 | 112 | |
@@ -111,6 +117,7 @@ discard block |
||
111 | 117 | |
112 | 118 | /** |
113 | 119 | * @param int|null $right |
120 | + * @return void |
|
114 | 121 | */ |
115 | 122 | public function setRight(?int $right): void; |
116 | 123 | |
@@ -121,6 +128,7 @@ discard block |
||
121 | 128 | |
122 | 129 | /** |
123 | 130 | * @param int|null $level |
131 | + * @return void |
|
124 | 132 | */ |
125 | 133 | public function setLevel(?int $level): void; |
126 | 134 | |
@@ -131,6 +139,7 @@ discard block |
||
131 | 139 | |
132 | 140 | /** |
133 | 141 | * @param int|null $position |
142 | + * @return void |
|
134 | 143 | */ |
135 | 144 | public function setPosition(?int $position): void; |
136 | 145 |