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
4040 * @var array
4141 */
4242 public static $ properties = [
43+ 'adult ' ,
4344 'backdrop_path ' ,
4445 'episode_run_time ' ,
4546 'first_air_date ' ,
@@ -242,6 +243,10 @@ class Tv extends AbstractModel
242243 * @var GenericCollection
243244 */
244245 protected $ episodeGroups ;
246+ /**
247+ * @var bool
248+ */
249+ private $ adult = false ;
245250
246251 /**
247252 * Constructor
@@ -1093,4 +1098,20 @@ public function setEpisodeGroups(GenericCollection $episodeGroups): Tv
10931098
10941099 return $ this ;
10951100 }
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+ }
10961117}
You can’t perform that action at this time.
0 commit comments