vd/app/Domains/Log/Facades/GeoIp.php
2018-11-05 09:26:30 +08:00

22 lines
334 B
PHP

<?php
namespace App\Domains\Log\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @see \GeoIp2\Database\Reader
*/
class GeoIp extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'geoip';
}
}