Pop\Geo\Geo::__get PHP Method

__get() public method

Get method to return the value of hostInfo[$name].
public __get ( string $name ) : mixed
$name string
return mixed
    public function __get($name)
    {
        return array_key_exists($name, $this->hostInfo) ? $this->hostInfo[$name] : null;
    }