setTopic() public method

public setTopic ( $topic )
示例#1
0
文件: Topic.php 项目: ppy/osu-web
 public function poll($poll = null)
 {
     if ($this->_poll === null) {
         if ($poll === null) {
             $poll = new TopicPoll();
         }
         $this->_poll = $poll->setTopic($this);
     }
     return $this->_poll;
 }