You are here

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\Entity

Code

public function getVotes() {

  /** @var \Drupal\poll\PollVoteStorage $vote_storage */
  $vote_storage = \Drupal::service('poll_vote.storage');
  return $vote_storage
    ->getVotes($this);
}