Sms.php 501 B

123456789101112131415161718192021222324252627
  1. <?php namespace App\Facades\Servers\Aliyun;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短信发送
  5. *
  6. * @method static array sendSms(string $phone,string $signName,string $templateCode,array $param=[]) 发送短信
  7. *
  8. * @see \App\Servers\Aliyun\Sms
  9. *
  10. *
  11. */
  12. class Sms 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\Aliyun\Sms';
  22. }
  23. }
  24. ?>