callmez\wechat\sdk\Wechat::deleteShelf PHP Method

deleteShelf() public method

删除货架
public deleteShelf ( $shelfId ) : boolean
$shelfId
return boolean
    public function deleteShelf($shelfId)
    {
        $result = $this->httpRaw(self::WECHAT_SHOP_SHELF_DELETE_URL . 'access_token=' . $this->getAccessToken(), ['shelf_id' => $shelfId]);
        return isset($result['errmsg']) && $result['errmsg'] == 'success';
    }
Wechat