/home/techb158/immovalet.com/vendor/league/oauth1-client/src/Server
Edit: /home/techb158/immovalet.com/vendor/league/oauth1-client/src/Server/User.php (2005B)
{$key})) {
$this->{$key} = $value;
}
}
/**
* Tells if a property is set.
*
* @param string $key
*
* @return bool
*/
public function __isset($key)
{
return isset($this->{$key});
}
/**
* Get a property from the user.
*
* @param string $key
*
* @return mixed
*/
public function __get($key)
{
if (isset($this->{$key})) {
return $this->{$key};
}
}
/**
* @inheritDoc
*/
public function getIterator()
{
return new ArrayIterator(get_object_vars($this));
}
}