预定义HTTP请求Method和返回状态码

dev-master 2020-10-21 02:31 UTC

This package is auto-updated.

Last update: 2024-06-21 10:56:50 UTC


README

hms

预定义HTTP请求Method和返回状态码

##使用方法:

class RequestClass implements RequestMethodInterface`
{
    public function index()
    {
        return self::METHOD_GET;
    }
}
class ResponseClass implements ResponseCodeInterface`
{
    public function index()
    {
        return self::STATUS_OK;
    }
}