diff --git a/src/Application/Application.php b/src/Application/Application.php index f359a4a33..b3658367d 100644 --- a/src/Application/Application.php +++ b/src/Application/Application.php @@ -114,7 +114,6 @@ public function createInitialRequest(): Request $params, $this->httpRequest->getPost(), $this->httpRequest->getFiles(), - [Request::SECURED => $this->httpRequest->isSecured()], ); } diff --git a/src/Application/Request.php b/src/Application/Request.php index 7632818ee..5c9985ce3 100644 --- a/src/Application/Request.php +++ b/src/Application/Request.php @@ -28,9 +28,6 @@ final class Request /** method */ public const FORWARD = 'FORWARD'; - /** flag */ - public const SECURED = 'secured'; - /** flag */ public const RESTORED = 'restored';