generated from php/site_api
19 lines
350 B
PHP
19 lines
350 B
PHP
<?php
|
|
|
|
namespace app\common\wechat;
|
|
|
|
use EasyWeChat\OfficialAccount\Application;
|
|
|
|
class OfficialAccount
|
|
{
|
|
private static $instance = null;
|
|
|
|
public static function getInstance()
|
|
{
|
|
if (self::$instance == null) {
|
|
self::$instance = new Application(config('wechat.gzh'));
|
|
}
|
|
return self::$instance;
|
|
}
|
|
}
|