uniondrug / service-server
微服务服务器
1.4
2018-02-01 07:09 UTC
This package is auto-updated.
Last update: 2024-09-09 18:28:44 UTC
README
UnionDrug微服务
MicroService服务端producer。
- PHP
7.1+ - Phalcon
3.2+
方法
withError(string,int)withList(array)withObject(array)withPaging(array,ResponsePaging)withSuccess()setPaging(int,int,int)
public function postAction(){ $total = 123; $page = 3; $limit = 15; $data = [ ["id" => 1, "key" => "value"], ["id" => 2, "key" => "value2"] ]; $this->serviceServer->setPaging($total, $page, $limit)->withPaging($data); }
目录
└── vendor
└── uniondrug
└── service-server
├── src
│ └── Server.php
└── README.md
Composer
{
"autoload" : {
"psr-4" : {
"UniondrugServiceServer\\" : "vendor/uniondrug/service-server/src"
}
}
}