Client.php 451 B

1234567891011121314151617181920212223242526
  1. <?php namespace App\Facades\Servers\ShortUrl;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 短链
  5. *
  6. * @method mixed createUrl(string $originUrl) 获取短链
  7. *
  8. * @see \App\Servers\ShortUrl\Client
  9. *
  10. */
  11. class Client extends Facade
  12. {
  13. /**
  14. * Get the registered name of the component.
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeAccessor()
  19. {
  20. return '\App\Servers\ShortUrl\Client';
  21. }
  22. }
  23. ?>