File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ class Tv extends AbstractModel
40
40
* @var array
41
41
*/
42
42
public static $ properties = [
43
+ 'adult ' ,
43
44
'backdrop_path ' ,
44
45
'episode_run_time ' ,
45
46
'first_air_date ' ,
@@ -242,6 +243,10 @@ class Tv extends AbstractModel
242
243
* @var GenericCollection
243
244
*/
244
245
protected $ episodeGroups ;
246
+ /**
247
+ * @var bool
248
+ */
249
+ private $ adult = false ;
245
250
246
251
/**
247
252
* Constructor
@@ -1093,4 +1098,20 @@ public function setEpisodeGroups(GenericCollection $episodeGroups): Tv
1093
1098
1094
1099
return $ this ;
1095
1100
}
1101
+
1102
+ /**
1103
+ * @return bool
1104
+ */
1105
+ public function getAdult (): bool
1106
+ {
1107
+ return $ this ->adult ;
1108
+ }
1109
+
1110
+ /**
1111
+ * @param bool $adult
1112
+ */
1113
+ public function setAdult (bool $ adult ): void
1114
+ {
1115
+ $ this ->adult = $ adult ;
1116
+ }
1096
1117
}
You can’t perform that action at this time.
0 commit comments