コード例 #1
0
ファイル: AuthorController.php プロジェクト: yasoon/yasoon
 /**
  * @Route("/setQuestion")
  * @Method({"POST"})
  *
  * @return array
  */
 public function setQuestion(Request $request)
 {
     $question = $request->request->all();
     $result = $this->service->setQuestion($question);
     return $result;
 }