public
__construct
(mixed $name = null, mixed $email = null, mixed $uri = null, mixed $type = null)
/**
 * Constructor.
 *
 * @param   string  $name   The full name of the person.
 * @param   string  $email  The email address of the person.
 * @param   string  $uri    The URI for the person.
 * @param   string  $type   The type of person.
 *
 * @since   3.1.4
 */
public function __construct($name = null, $email = null, $uri = null, $type = null)
{
    $this->name = $name;
    $this->email = $email;
    $this->uri = $uri;
    $this->type = $type;
}