VerifyCode.php 610 B

1234567891011121314151617181920212223242526272829
  1. <?php namespace App\Facades\Servers\Sms;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短信发送
  5. *
  6. * @method static array sendCode($phone,$verifyCode) 发送短信验证码
  7. * @method static array sendRemind($phone,$content) 发送短信
  8. * @method static array sendContent($phone,$content) 发送短信内容
  9. *
  10. * @see \App\Servers\Sms\VerifyCode
  11. *
  12. *
  13. */
  14. class VerifyCode extends Facade
  15. {
  16. /**
  17. * Get the registered name of the component.
  18. *
  19. * @return string
  20. */
  21. protected static function getFacadeAccessor()
  22. {
  23. return '\App\Servers\Sms\VerifyCode';
  24. }
  25. }
  26. ?>