Completed
Pull Request — 2.1 (#1123)
by Rafał
09:25
created
src/SWP/Bundle/ContentBundle/Model/Metadata.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -171,6 +171,9 @@  discard block
 block discarded – undo
171 171
         return $this->guid;
172 172
     }
173 173
 
174
+    /**
175
+     * @param string $guid
176
+     */
174 177
     public function setGuid(?string $guid): void
175 178
     {
176 179
         $this->guid = $guid;
@@ -181,6 +184,9 @@  discard block
 block discarded – undo
181 184
         return $this->urgency;
182 185
     }
183 186
 
187
+    /**
188
+     * @param integer $urgency
189
+     */
184 190
     public function setUrgency(?int $urgency): void
185 191
     {
186 192
         $this->urgency = $urgency;
@@ -191,6 +197,9 @@  discard block
 block discarded – undo
191 197
         return $this->priority;
192 198
     }
193 199
 
200
+    /**
201
+     * @param integer $priority
202
+     */
194 203
     public function setPriority(?int $priority): void
195 204
     {
196 205
         $this->priority = $priority;
@@ -221,6 +230,9 @@  discard block
 block discarded – undo
221 230
         return $this->language;
222 231
     }
223 232
 
233
+    /**
234
+     * @param string $language
235
+     */
224 236
     public function setLanguage(?string $language): void
225 237
     {
226 238
         $this->language = $language;
@@ -231,6 +243,9 @@  discard block
 block discarded – undo
231 243
         return $this->edNote;
232 244
     }
233 245
 
246
+    /**
247
+     * @param string $edNote
248
+     */
234 249
     public function setEdNote(?string $edNote): void
235 250
     {
236 251
         $this->edNote = $edNote;
@@ -241,6 +256,9 @@  discard block
 block discarded – undo
241 256
         return $this->genre;
242 257
     }
243 258
 
259
+    /**
260
+     * @param string $genre
261
+     */
244 262
     public function setGenre(?string $genre): void
245 263
     {
246 264
         $this->genre = $genre;
Please login to merge, or discard this patch.