Stevebauman\Location\Location::getClientIP PHP Метод

getClientIP() защищенный Метод

Returns the client IP address. Will return the set config IP if localhost testing is set to true.
protected getClientIP ( ) : string
Результат string
    protected function getClientIP()
    {
        return $this->localHostTesting() ? $this->getLocalHostTestingIp() : request()->ip();
    }