我想从api / doc中删除默认链接。 我安装并配置了swagger和nelmio,但smtf出问题了。
我添加/**
*
*
* Register new user.
*
* @SWG\Tag(name="Registration")
* @Route("/register/clients", methods={"POST"})
* @SWG\Response(
* response=200,
* description="Returns the rewards of an user",
* @SWG\Schema(
* type="object",
* @SWG\Property(property="email", type="string"),
* @SWG\Property(property="password", type="string")
* )
* )
*
*
*
* @param Request $request
*/
因此出现注册注册/客户。 现在,我尝试删除其他链接。我读到我必须使用:
# config/packages/nelmio_api_doc.yaml
nelmio_api_doc:
areas:
path_patterns: # an array of regexps
- ^/api(?!/doc$)
host_patterns:
- ^api\.
https://symfony.com/doc/master/bundles/NelmioApiDocBundle/index.html
我不知道我输了什么。