diff --git a/src/Episode.php b/src/Episode.php index f244740..2df2372 100644 --- a/src/Episode.php +++ b/src/Episode.php @@ -46,6 +46,11 @@ class Episode */ protected $duration; + /** + * @var string + */ + protected $author; + /** * @var Media */ @@ -56,6 +61,24 @@ class Episode */ protected $publishedDate; + /** + * @return string + */ + public function getAuthor() + { + return $this->$author; + } + + /** + * @param string $author + * @return Episode + */ + public function setAuthor($author) + { + $this->$author = $author; + return $this; + } + /** * @return string */