mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-04 00:48:09 +00:00
34 lines
794 B
PHP
34 lines
794 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the overtrue/wechat.
|
|
*
|
|
* (c) overtrue <i@overtrue.me>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
namespace EasyWeChat\OfficialAccount\Card;
|
|
|
|
/**
|
|
* Class MovieTicketClient.
|
|
*
|
|
* @author overtrue <i@overtrue.me>
|
|
*/
|
|
class MovieTicketClient extends Client
|
|
{
|
|
/**
|
|
* @param array $params
|
|
*
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string
|
|
*
|
|
* @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
|
|
* @throws \GuzzleHttp\Exception\GuzzleException
|
|
*/
|
|
public function updateUser(array $params)
|
|
{
|
|
return $this->httpPostJson('card/movieticket/updateuser', $params);
|
|
}
|
|
}
|