Back to FeedPerson class

Method __construct

public
__construct
(mixed $name = null, mixed $email = null, mixed $uri = null, mixed $type = null)
Constructor.
Parameters
  • string $name The full name of the person.
  • string $email The email address of the person.
  • string $uri The URI for the person.
  • string $type The type of person.
Since
  • 3.1.4
Class: FeedPerson
Project: Joomla

Method __construct - Source code

/**
 * 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;
}