PayServiceFacade.php 369 B

12345678910111213141516171819
  1. <?php
  2. namespace app\service\api;
  3. use think\Facade;
  4. /**
  5. * Api用户服务门面
  6. * @package plugin\core\service
  7. * @method static mixed init($token) 初始化
  8. * @method static mixed getError() 获取错误信息
  9. */
  10. class PayServiceFacade extends Facade
  11. {
  12. protected static function getFacadeClass()
  13. {
  14. return Pay::class;
  15. }
  16. }