for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Abbotton\DouDian\Api;
use Illuminate\Http\Client\RequestException;
use Psr\SimpleCache\InvalidArgumentException;
class Alliance extends BaseRequest
{
/**
* 查询联盟订单明细.
*
* @param array $params
* @return array
* @throws RequestException
* @throws InvalidArgumentException
*/
public function getOrderList(array $params): array
return $this->httpPost('alliance/getOrderList', $params);
}