Sms.php 382 B

123456789101112131415161718192021222324
  1. <?php namespace App\Facades\Servers\Tencent;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短信发送
  5. *
  6. * @see \App\Servers\Tencent\Sms
  7. *
  8. */
  9. class Sms extends Facade
  10. {
  11. /**
  12. * Get the registered name of the component.
  13. *
  14. * @return string
  15. */
  16. protected static function getFacadeAccessor()
  17. {
  18. return '\App\Servers\Tencent\Sms';
  19. }
  20. }
  21. ?>