Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions library/HTMLPurifier/URI.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,48 +11,48 @@
class HTMLPurifier_URI
{
/**
* @type string
* @type ?string
*/
public $scheme;

/**
* @type string
* @type ?string
*/
public $userinfo;

/**
* @type string
* @type ?string
*/
public $host;

/**
* @type int
* @type ?int
*/
public $port;

/**
* @type string
* @type ?string
*/
public $path;

/**
* @type string
* @type ?string
*/
public $query;

/**
* @type string
* @type ?string
*/
public $fragment;

/**
* @param string $scheme
* @param string $userinfo
* @param string $host
* @param int $port
* @param string $path
* @param string $query
* @param string $fragment
* @param ?string $scheme
* @param ?string $userinfo
* @param ?string $host
* @param ?int $port
* @param ?string $path
* @param ?string $query
* @param ?string $fragment
* @note Automatically normalizes scheme and port
*/
public function __construct($scheme, $userinfo, $host, $port, $path, $query, $fragment)
Expand Down
Loading