composer require easyswoole/http-annotation
/**
* Class ControllerA
* @package EasySwoole\HttpAnnotation\Tests\TestController
* @ApiGroup(groupName="A")
* @ApiGroupDescription()
*/
class ControllerA extends AnnotationController
{
/**
* @Api(path="/A/test")
*/
function test()
{
}
/**
* @Api(path="")
*/
function test2()
{
}
}