2020-04-30 12:36:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\SocialEntity;
|
|
|
|
|
|
|
|
|
|
|
|
class PollOption
|
|
|
|
{
|
|
|
|
/** @var string */
|
|
|
|
private $title;
|
|
|
|
/** @var int */
|
|
|
|
private $votes_count;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2020-05-01 16:40:07 +02:00
|
|
|
public function getTitle(): ?string
|
2020-04-30 12:36:35 +02:00
|
|
|
{
|
|
|
|
return $this->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $title
|
|
|
|
*/
|
2020-05-01 16:40:07 +02:00
|
|
|
public function setTitle(?string $title): void
|
2020-04-30 12:36:35 +02:00
|
|
|
{
|
|
|
|
$this->title = $title;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
2020-05-01 16:40:07 +02:00
|
|
|
public function getVotesCount(): ?int
|
2020-04-30 12:36:35 +02:00
|
|
|
{
|
|
|
|
return $this->votes_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $votes_count
|
|
|
|
*/
|
2020-05-01 16:40:07 +02:00
|
|
|
public function setVotesCount(?int $votes_count): void
|
2020-04-30 12:36:35 +02:00
|
|
|
{
|
|
|
|
$this->votes_count = $votes_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-01 15:19:30 +02:00
|
|
|
public function __toString()
|
|
|
|
{
|
|
|
|
return $this->title;
|
|
|
|
}
|
2020-04-30 12:36:35 +02:00
|
|
|
}
|