<?phpnamespace PortalBundle\Entity;use Application\Sonata\MediaBundle\Entity\Media;/** * Founders */class Founders{ /** * @var int */ private $id; /** * @var string */ private $title_ua; /** * @var string */ private $title_ru; /** * @var string */ private $text_ua; /** * @var string */ private $text_ru; /** * @var Media */ private $image; /** * @var Media */ private $image_mobile; /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set titleUa. * * @param string $titleUa * * @return Founders */ public function setTitleUa($titleUa) { $this->title_ua = $titleUa; return $this; } /** * Get titleUa. * * @return string */ public function getTitleUa() { return $this->title_ua; } /** * Set titleRu. * * @param string $titleRu * * @return Founders */ public function setTitleRu($titleRu) { $this->title_ru = $titleRu; return $this; } /** * Get titleRu. * * @return string */ public function getTitleRu() { return $this->title_ru; } /** * Set textUa. * * @param string $textUa * * @return Founders */ public function setTextUa($textUa) { $this->text_ua = $textUa; return $this; } /** * Get textUa. * * @return string */ public function getTextUa() { return $this->text_ua; } /** * Set textRu. * * @param string $textRu * * @return Founders */ public function setTextRu($textRu) { $this->text_ru = $textRu; return $this; } /** * Get textRu. * * @return string */ public function getTextRu() { return $this->text_ru; } /** * Set image. * * @param Media|null $image * * @return Founders */ public function setImage(Media $image = null) { $this->image = $image; return $this; } /** * Get image. * * @return Media|null */ public function getImage() { return $this->image; } /** * Set imageMobile. * * @param Media|null $imageMobile * * @return Founders */ public function setImageMobile(Media $imageMobile = null) { $this->image_mobile = $imageMobile; return $this; } /** * Get imageMobile. * * @return Media|null */ public function getImageMobile() { return $this->image_mobile; }}