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 Member extends BaseRequest
{
/**
* 会员等级更新.
*
* @param array $params
* @throws RequestException
* @throws InvalidArgumentException
* @return array
*/
public function batchUpdate(array $params): array
return $this->httpPost('member/batchUpdate', $params);
}
* 获取商家推广链接接口.
public function getShopShortLink(array $params): array
return $this->httpPost('member/getShopShortLink', $params);