@@ -228,7 +228,7 @@ public function __construct(
228228 *
229229 * @param Title $title
230230 */
231- public function addTitle (Title $ title )
231+ public function addTitle (Title $ title ): void
232232 {
233233 array_push ($ this ->title , $ title );
234234 }
@@ -248,7 +248,7 @@ public function getTitle(): array
248248 *
249249 * @param SubTitle $subTitle
250250 */
251- public function addSubTitle (SubTitle $ subTitle )
251+ public function addSubTitle (SubTitle $ subTitle ): void
252252 {
253253 array_push ($ this ->subTitle , $ subTitle );
254254 }
@@ -268,7 +268,7 @@ public function getSubTitle(): array
268268 *
269269 * @param Desc $desc
270270 */
271- public function addDescription (Desc $ desc )
271+ public function addDescription (Desc $ desc ): void
272272 {
273273 array_push ($ this ->desc , $ desc );
274274 }
@@ -288,7 +288,7 @@ public function getDescription(): array
288288 *
289289 * @param Credits $credits
290290 */
291- public function addCredits (Credits $ credits )
291+ public function addCredits (Credits $ credits ): void
292292 {
293293 array_push ($ this ->credits , $ credits );
294294 }
@@ -308,7 +308,7 @@ public function getCredits(): array
308308 *
309309 * @param Category $category
310310 */
311- public function addCategory (Category $ category )
311+ public function addCategory (Category $ category ): void
312312 {
313313 array_push ($ this ->category , $ category );
314314 }
@@ -328,7 +328,7 @@ public function getCategory(): array
328328 *
329329 * @param Keyword $keyword
330330 */
331- public function addKeyword (Keyword $ keyword )
331+ public function addKeyword (Keyword $ keyword ): void
332332 {
333333 array_push ($ this ->keyword , $ keyword );
334334 }
@@ -348,7 +348,7 @@ public function getKeyword(): array
348348 *
349349 * @param Icon $icon
350350 */
351- public function addIcon (Icon $ icon )
351+ public function addIcon (Icon $ icon ): void
352352 {
353353 array_push ($ this ->icon , $ icon );
354354 }
@@ -368,7 +368,7 @@ public function getIcon(): array
368368 *
369369 * @param Url $url
370370 */
371- public function addUrl (Url $ url )
371+ public function addUrl (Url $ url ): void
372372 {
373373 array_push ($ this ->url , $ url );
374374 }
@@ -388,7 +388,7 @@ public function getUrl(): array
388388 *
389389 * @param Country $country
390390 */
391- public function addCountry (Country $ country )
391+ public function addCountry (Country $ country ): void
392392 {
393393 array_push ($ this ->country , $ country );
394394 }
@@ -408,7 +408,7 @@ public function getCountry(): array
408408 *
409409 * @param EpisodeNum $episodeNum
410410 */
411- public function addEpisodeNum (EpisodeNum $ episodeNum )
411+ public function addEpisodeNum (EpisodeNum $ episodeNum ): void
412412 {
413413 array_push ($ this ->episodeNum , $ episodeNum );
414414 }
@@ -428,7 +428,7 @@ public function getEpisodeNum(): array
428428 *
429429 * @param Subtitles $subtitles
430430 */
431- public function addSubtitles (Subtitles $ subtitles )
431+ public function addSubtitles (Subtitles $ subtitles ): void
432432 {
433433 array_push ($ this ->subtitles , $ subtitles );
434434 }
@@ -448,7 +448,7 @@ public function getSubtitles(): array
448448 *
449449 * @param Rating $rating
450450 */
451- public function addRating (Rating $ rating )
451+ public function addRating (Rating $ rating ): void
452452 {
453453 array_push ($ this ->rating , $ rating );
454454 }
@@ -467,7 +467,7 @@ public function getRating(): array
467467 *
468468 * @param StarRating $rating
469469 */
470- public function addStarRating (StarRating $ rating )
470+ public function addStarRating (StarRating $ rating ): void
471471 {
472472 array_push ($ this ->starRating , $ rating );
473473 }
@@ -487,7 +487,7 @@ public function getStarRating(): array
487487 *
488488 * @param Review $review
489489 */
490- public function addReview (Review $ review )
490+ public function addReview (Review $ review ): void
491491 {
492492 array_push ($ this ->review , $ review );
493493 }
0 commit comments