在路线的注释中,@param 是什么意思?
我在 symfony 网站上找不到任何关于这个关键字的文档,并且对它的用途和作用感到非常困惑。
我之所以问,是因为我试图弄清楚如何访问 .yml 文件中的参数以在路由中使用,但我仍想使用注释而不是 YML 路由方法。
显示代码示例可能不是最好的,但这里是 @param 出现的地方
/**
* League action
*
* @Route("/association/{assoc}/{league}", name="league", requirements={"league" = "\d+"}, defaults={"game" = null})
* @Route("/association/{assoc}/{league}/{game}")
* @Template()
*
* @param $assoc
* @param $league
* @param $game
* @return array
*/
我从这里(带有可选参数的注释中的 Symfony2 路由)
任何帮助表示赞赏,谢谢!