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