private function Uri::removeDefaultPort in Auth0 Single Sign On 8.2
1 call to Uri::removeDefaultPort()
- Uri::applyParts in vendor/
guzzlehttp/ psr7/ src/ Uri.php - Apply parse_url parts to a URI.
File
- vendor/
guzzlehttp/ psr7/ src/ Uri.php, line 681
Class
- Uri
- PSR-7 URI implementation.
Namespace
GuzzleHttp\Psr7Code
private function removeDefaultPort() {
if ($this->port !== null && self::isDefaultPort($this)) {
$this->port = null;
}
}