public function getAbsolutePath(): string
{
return $this->uri;
}
public function getAbsoluteUrl(): string
{
$scheme = $this->https ? 'https://' : 'http://';
return $scheme . $this->host . $this->getAbsolutePath();
}
public function getNetworkPath(): string
{
return '//' . $this->host . $this->getAbsolutePath();
}
public function getPathInfo(): string
{
return $this->pathInfo;
}
}