WuLiuClient.php 386 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\AliyunWuliu\Facade;
  4. use think\Facade;
  5. /**
  6. * @method static array kdi(string $no, string $type = '') 快递查询
  7. * @method static array getExpressList() 获取快递公司列表
  8. */
  9. class WuLiuClient extends Facade
  10. {
  11. protected static function getFacadeClass()
  12. {
  13. return \SixShop\AliyunWuliu\WuLiuClient::class;
  14. }
  15. }