Изменить 'src/Episode.php'

This commit is contained in:
Evgeny Kuchuk 2021-08-12 16:23:32 +00:00
parent 2677fe218f
commit 7ec6ee900f

View File

@ -66,7 +66,7 @@ class Episode
*/ */
public function getAuthor() public function getAuthor()
{ {
return $this->$author; return $this->author;
} }
/** /**
@ -75,7 +75,7 @@ class Episode
*/ */
public function setAuthor($author) public function setAuthor($author)
{ {
$this->$author = $author; $this->author = $author;
return $this; return $this;
} }