123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Aix\Pay;
- use Aix\Pay\Contracts\AliPay;
- use Aix\Pay\Contracts\Offline;
- use Aix\Pay\Contracts\Wechat;
- class AixPay
- {
- /**
- * @return AliPay
- */
- public static function alipay()
- {
- return new AliPay();
- }
- /**
- * @return Wechat
- */
- public static function wechat()
- {
- return new Wechat();
- }
- public static function offline()
- {
- return new Offline();
- }
- }
|