setTopic() 공개 메소드

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;
 }