wujunxiong 4725452b86 初始版本提交 2 년 전
..
bin 4725452b86 初始版本提交 2 년 전
src 4725452b86 初始版本提交 2 년 전
tests 4725452b86 初始版本提交 2 년 전
LICENSE 4725452b86 初始版本提交 2 년 전
README.md 4725452b86 初始版本提交 2 년 전
composer.json 4725452b86 初始版本提交 2 년 전

README.md

HttpAnnotation

安装

composer require easyswoole/http-annotation

注解规范

Example

/**
 * 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()
    {
        
    }
}