GuoDu.php 508 B

12345678910111213141516171819202122232425262728
  1. <?php namespace App\Facades\Servers\Sms;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短信发送
  5. *
  6. * @method static array sendSms($desMobile,$content,$sign) 发送短信
  7. * @method static int|array surplus() 发送短信
  8. *
  9. * @see \App\Servers\Sms\GuoDu
  10. *
  11. *
  12. */
  13. class GuoDu extends Facade
  14. {
  15. /**
  16. * Get the registered name of the component.
  17. *
  18. * @return string
  19. */
  20. protected static function getFacadeAccessor()
  21. {
  22. return '\App\Servers\Aliyun\Sms';
  23. }
  24. }
  25. ?>