mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-31 21:12:41 +00:00
More style fixes
This commit is contained in:
parent
53aa7a4d0d
commit
c9e86e71c4
1 changed files with 5 additions and 6 deletions
|
@ -10,11 +10,10 @@ namespace JKingWeb\Arsse\Misc;
|
||||||
* A collection of functions for manipulating URLs
|
* A collection of functions for manipulating URLs
|
||||||
*/
|
*/
|
||||||
class URL {
|
class URL {
|
||||||
|
|
||||||
/** Normalizes a URL
|
/** Normalizes a URL
|
||||||
*
|
*
|
||||||
* Normalizations performed are:
|
* Normalizations performed are:
|
||||||
*
|
*
|
||||||
* - Lowercasing scheme
|
* - Lowercasing scheme
|
||||||
* - Lowercasing ASCII host names
|
* - Lowercasing ASCII host names
|
||||||
* - IDN normalization
|
* - IDN normalization
|
||||||
|
@ -24,9 +23,9 @@ class URL {
|
||||||
* - Discarding empty queries
|
* - Discarding empty queries
|
||||||
* - Generic percent-encoding normalization
|
* - Generic percent-encoding normalization
|
||||||
* - Fragment discarding
|
* - Fragment discarding
|
||||||
*
|
*
|
||||||
* It does NOT drop trailing slashes from paths, nor does it perform Unicode normalization or context-aware percent-encoding normalization
|
* It does NOT drop trailing slashes from paths, nor does it perform Unicode normalization or context-aware percent-encoding normalization
|
||||||
*
|
*
|
||||||
* @param string $url The URL to normalize
|
* @param string $url The URL to normalize
|
||||||
* @param string $u Username to add to the URL, replacing any existing credentials
|
* @param string $u Username to add to the URL, replacing any existing credentials
|
||||||
* @param string $p Password to add to the URL, if a username is specified
|
* @param string $p Password to add to the URL, if a username is specified
|
||||||
|
@ -122,7 +121,7 @@ class URL {
|
||||||
$absolute = ($hasHost || $path[0] === "/");
|
$absolute = ($hasHost || $path[0] === "/");
|
||||||
$index = (substr($path, -1) === "/");
|
$index = (substr($path, -1) === "/");
|
||||||
$out = [];
|
$out = [];
|
||||||
foreach($parts as $p) {
|
foreach ($parts as $p) {
|
||||||
switch ($p) {
|
switch ($p) {
|
||||||
case "":
|
case "":
|
||||||
case ".":
|
case ".":
|
||||||
|
|
Loading…
Reference in a new issue