3 namespace Rapsys\BlogBundle\Entity
;
8 class AuthorTranslation
36 * @var \Rapsys\BlogBundle\Entity\Author
44 * @param integer $authorId
46 * @return AuthorTranslation
48 public function setAuthorId($authorId)
50 $this->author_id
= $authorId;
60 public function getAuthorId()
62 return $this->author_id
;
68 * @param integer $languageId
70 * @return AuthorTranslation
72 public function setLanguageId($languageId)
74 $this->language_id
= $languageId;
84 public function getLanguageId()
86 return $this->language_id
;
92 * @param string $description
94 * @return AuthorTranslation
96 public function setDescription($description)
98 $this->description
= $description;
108 public function getDescription()
110 return $this->description
;
116 * @param \DateTime $created
118 * @return AuthorTranslation
120 public function setCreated($created)
122 $this->created
= $created;
132 public function getCreated()
134 return $this->created
;
140 * @param \DateTime $updated
142 * @return AuthorTranslation
144 public function setUpdated($updated)
146 $this->updated
= $updated;
156 public function getUpdated()
158 return $this->updated
;
164 * @param \Rapsys\BlogBundle\Entity\Author $author
166 * @return AuthorTranslation
168 public function setAuthor(\Rapsys\BlogBundle\Entity\Author
$author = null)
170 $this->author
= $author;
178 * @return \Rapsys\BlogBundle\Entity\Author
180 public function getAuthor()
182 return $this->author
;
185 * @var \Rapsys\BlogBundle\Entity\Language
193 * @param \Rapsys\BlogBundle\Entity\Language $language
195 * @return AuthorTranslation
197 public function setLanguage(\Rapsys\BlogBundle\Entity\Language
$language = null)
199 $this->language
= $language;
207 * @return \Rapsys\BlogBundle\Entity\Language
209 public function getLanguage()
211 return $this->language
;