wujunxiong 4725452b86 初始版本提交 | 2 năm trước cách đây | |
---|---|---|
.. | ||
bin | 2 năm trước cách đây | |
src | 2 năm trước cách đây | |
tests | 2 năm trước cách đây | |
LICENSE | 2 năm trước cách đây | |
README.md | 2 năm trước cách đây | |
composer.json | 2 năm trước cách đây |
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()
{
}
}