-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes parse_url return type when $component is -1 returning more type…
…s than were valid. Adds missing types when $component is not a constant value.
- Loading branch information
1 parent
5422c7a
commit 1ebcae0
Showing
4 changed files
with
62 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
namespace Bug4754; | ||
|
||
use function PHPStan\Testing\assertType; | ||
|
||
/** | ||
* The standard PHP parse_url() function doesn't work with relative URI's only absolute URL's | ||
* so this function works around that by adding a http://domain prefix | ||
* if needed and passing through the results | ||
* | ||
* @param string $url | ||
* @param int $component | ||
* | ||
* @return string|int|array|bool|null | ||
*/ | ||
function parseUrl($url, $component = -1) | ||
{ | ||
$parsedComponentNotSpecified = parse_url($url); | ||
$parsedNotConstant = parse_url($url, $component); | ||
$parsedAllConstant = parse_url($url, -1); | ||
$parsedSchemeConstant = parse_url($url, PHP_URL_SCHEME); | ||
$parsedHostConstant = parse_url($url, PHP_URL_HOST); | ||
$parsedPortConstant = parse_url($url, PHP_URL_PORT); | ||
$parsedUserConstant = parse_url($url, PHP_URL_USER); | ||
$parsedPassConstant = parse_url($url, PHP_URL_PASS); | ||
$parsedPathConstant = parse_url($url, PHP_URL_PATH); | ||
$parsedQueryConstant = parse_url($url, PHP_URL_QUERY); | ||
$parsedFragmentConstant = parse_url($url, PHP_URL_FRAGMENT); | ||
|
||
assertType('array{scheme?: string, host?: string, port?: int<0, 65535>, user?: string, pass?: string, path?: string, query?: string, fragment?: string}|false', $parsedComponentNotSpecified); | ||
assertType('array{scheme?: string, host?: string, port?: int<0, 65535>, user?: string, pass?: string, path?: string, query?: string, fragment?: string}|int<0, 65535>|string|false|null', $parsedNotConstant); | ||
assertType('array{scheme?: string, host?: string, port?: int<0, 65535>, user?: string, pass?: string, path?: string, query?: string, fragment?: string}|false', $parsedAllConstant); | ||
assertType('string|false|null', $parsedSchemeConstant); | ||
assertType('string|false|null', $parsedHostConstant); | ||
assertType('int<0, 65535>|false|null', $parsedPortConstant); | ||
assertType('string|false|null', $parsedUserConstant); | ||
assertType('string|false|null', $parsedPassConstant); | ||
assertType('string|false|null', $parsedPathConstant); | ||
assertType('string|false|null', $parsedQueryConstant); | ||
assertType('string|false|null', $parsedFragmentConstant); | ||
} |