コード例 #1
0
ファイル: AuthorController.php プロジェクト: yasoon/yasoon
 /**
  * @Route("/getAuthorInfo")
  * @Method({"POST"})
  */
 public function getAuthorInfo(Request $request)
 {
     $authors_id = $request->request->get('author_id');
     if (!is_array($authors_id)) {
         $authors_id = [$authors_id];
     }
     $result = $this->service->getAuthorsInfoByIds($authors_id);
     return $result;
 }