From 59b3552ab7d0dbb2a37b5390a6d9f73f3eee30b1 Mon Sep 17 00:00:00 2001 From: Evgeny Kuchuk Date: Thu, 12 Aug 2021 16:20:46 +0000 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20'src/Episode.php'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Episode.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 */