wujunxiong 4725452b86 初始版本提交 | пре 2 година | |
---|---|---|
.. | ||
bin | пре 2 година | |
src | пре 2 година | |
tests | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
composer.json | пре 2 година |
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()
{
}
}