| 1234567891011121314151617181920212223242526 |
- <?php namespace App\Facades\Servers\ShortUrl;
- use Illuminate\Support\Facades\Facade;
- /**
- * 短链
- *
- * @method mixed createUrl(string $originUrl) 获取短链
- *
- * @see \App\Servers\ShortUrl\Client
- *
- */
- class Client extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\ShortUrl\Client';
- }
- }
- ?>
|