招标
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
930 B

<?php
/**
* Date: 2020/12/18 9:53
* User: chenlong <vip_chenlong@163.com>
*/
namespace weChat;
use sdModule\common\StaticCallGetInstance;
use weChat\h5\{JsApi, OAuth2};
use weChat\appLet\SmallProgramORC;
use weChat\pay\WeChatPay;
/**
* Class WeChat
* @method static OAuth2 oAuth2()
* @method static JsApi jsApi()
* @method static SmallProgramORC SmallProgramORC(string $orc_type = SmallProgramORC::OCR_ID_CARD)
* @method static WeChatPay pay(string $trade_type = WeChatPay::JS_API)
* @package weChat
*/
class WeChat extends StaticCallGetInstance
{
/**
* @return array|string|\string[][]
*/
protected function getNamespace()
{
return [
'oAuth2' => OAuth2::class,
'jsApi' => JsApi::class,
'SmallProgramORC' => SmallProgramORC::class,
'pay' => WeChatPay::class
];
}
}