function RequestContext::setHttpsPort
Sets the HTTPS port.
Return value
$this
2 calls to RequestContext::setHttpsPort()
- RequestContext::fromRequest in vendor/
symfony/ routing/ RequestContext.php - Updates the RequestContext information based on a HttpFoundation Request.
- RequestContext::__construct in vendor/
symfony/ routing/ RequestContext.php
File
-
vendor/
symfony/ routing/ RequestContext.php, line 228
Class
- RequestContext
- Holds information about the current request.
Namespace
Symfony\Component\RoutingCode
public function setHttpsPort(int $httpsPort) : static {
$this->httpsPort = $httpsPort;
return $this;
}