public function Poll::getVotes in Poll 8
Get all the votes of this poll.
Return value
array
Overrides PollInterface::getVotes
File
- src/
Entity/ Poll.php, line 473
Class
- Poll
- Defines the poll entity class.
Namespace
Drupal\poll\EntityCode
public function getVotes() {
/** @var \Drupal\poll\PollVoteStorage $vote_storage */
$vote_storage = \Drupal::service('poll_vote.storage');
return $vote_storage
->getVotes($this);
}