MiniPay.php 463 B

123456789101112131415161718192021222324252627
  1. <?php namespace App\Facades\Servers\WechatMini;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 对象存储
  5. *
  6. * @method static string unifiedOrder($request) 下单
  7. *
  8. *
  9. * @see \App\Servers\WechatMini\Mini
  10. *
  11. */
  12. class MiniPay extends Facade
  13. {
  14. /**
  15. * Get the registered name of the component.
  16. *
  17. * @return string
  18. */
  19. protected static function getFacadeAccessor()
  20. {
  21. return '\App\Servers\WechatMini\Pay';
  22. }
  23. }
  24. ?>