From 122eac3e977232e409c85f736d5b6a953439aecb Mon Sep 17 00:00:00 2001 From: David Grudl Date: Sat, 13 Nov 2021 16:44:20 +0100 Subject: [PATCH] Request: removed flag SECURED (BC break) --- src/Application/Application.php | 1 - src/Application/Request.php | 3 --- 2 files changed, 4 deletions(-) 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';