setTopic() public method

public setTopic ( $topic )
Esempio n. 1
0
 public function poll($poll = null)
 {
     if ($this->_poll === null) {
         if ($poll === null) {
             $poll = new TopicPoll();
         }
         $this->_poll = $poll->setTopic($this);
     }
     return $this->_poll;
 }