/**
  * Retrieve already voted Poll Ids
  *
  * @return array|null
  */
 public function getVotedPollsIds()
 {
     if ($this->_votedIds === null) {
         $this->_votedIds = $this->_pollModel->getVotedPollsIds();
     }
     return $this->_votedIds;
 }