| 123456789101112131415161718192021 |
- <?php namespace App\Facades\Servers\Aliyun;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method string|array getCityByIp(string $ip='',string $field='') 获取IP归属地
- *
- * @see \App\Servers\Aliyun\IpLocation
- */
- class IpLocation extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Aliyun\IpLocation';
- }
- }
|