コード例 #1
0
 public function findQuestionListByPresentationList($presentation)
 {
     $questions = $this->questionDao->findQuestionsByPresentationList($presentation);
     $result = array();
     foreach ($questions as $question) {
         $result[$question->name] = $question;
     }
     return $result;
 }