Skip to content

Commit e593b01

Browse files
committed
Revert "TV Model: add missing "adult" property"
This reverts commit b820c52.
1 parent 1b12f4a commit e593b01

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

lib/Tmdb/Model/Tv.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class Tv extends AbstractModel
4040
* @var array
4141
*/
4242
public static $properties = [
43-
'adult',
4443
'backdrop_path',
4544
'episode_run_time',
4645
'first_air_date',
@@ -243,10 +242,6 @@ class Tv extends AbstractModel
243242
* @var GenericCollection
244243
*/
245244
protected $episodeGroups;
246-
/**
247-
* @var bool
248-
*/
249-
private $adult = false;
250245

251246
/**
252247
* Constructor
@@ -1098,20 +1093,4 @@ public function setEpisodeGroups(GenericCollection $episodeGroups): Tv
10981093

10991094
return $this;
11001095
}
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-
}
11171096
}

0 commit comments

Comments
 (0)