| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\modules\admin\models;
- use EasyWeChat\Factory;
- use Yansongda\Pay\Gateways\Alipay;
- use yii\base\Model;
- class ApiModel extends Model
- {
- /**
- * @return Factory
- */
- public static function getWechat()
- {
- return isset(\Yii::$app->controller->wechat) ? \Yii::$app->controller->wechat : null;
- }
- /**
- * @return Factory
- */
- public static function getWechatPay()
- {
- return isset(\Yii::$app->controller->wechatPay) ? \Yii::$app->controller->wechatPay : null;
- }
- /**
- * @return Alipay || null
- */
- public static function getAliPay()
- {
- return isset(\Yii::$app->controller->aliPay) ? \Yii::$app->controller->aliPay : null;
- }
- }
|