wujunxiong 4725452b86 初始版本提交 | hace 2 años | |
---|---|---|
.. | ||
bin | hace 2 años | |
src | hace 2 años | |
tests | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
composer.json | hace 2 años |
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()
{
}
}