Skip to content
Merged
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
12 changes: 6 additions & 6 deletions src/UriTargetInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,10 @@ public function isOrigin();
public function isAbsolute();

/**
* Indicate whether the URI is in authority form.
* Indicate whether the instance represents an authority-form request
* target.
*
* An authority-form URI is an URI that contains ONLY the authority
* information.
* An authority-form request-target contains ONLY the authority information.
*
* @see getAuthority()
* @link http://tools.ietf.org/html/rfc7230#section-5.3.3
Expand All @@ -298,10 +298,10 @@ public function isAbsolute();
public function isAuthority();

/**
* Indicate whether the URI is an asterisk-form.
* Indicate whether the instance represents an asterisk-form request
* target.
*
* An asterisk form URI will contain "*" as the path, and no other URI
* segments.
* An asterisk-form request-target will contain ONLY the string "*".
*
* @link http://tools.ietf.org/html/rfc7230#section-5.3.4
* @return bool
Expand Down