From 8ebd31d6868b494789325ca6a5e81418242bcafe Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Thu, 10 Dec 2020 09:37:38 +0100 Subject: Make $vars and $secureRandom required. Signed-off-by: Daniel Kesselberg --- lib/private/AppFramework/Http/Request.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/private/AppFramework/Http') diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index 3705ab2e92d..a873ee96772 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -136,8 +136,8 @@ class Request implements \ArrayAccess, \Countable, IRequest { * @param string $stream * @see http://www.php.net/manual/en/reserved.variables.php */ - public function __construct(array $vars = [], - ISecureRandom $secureRandom = null, + public function __construct(array $vars, + ISecureRandom $secureRandom, IConfig $config, CsrfTokenManager $csrfTokenManager = null, string $stream = 'php://input') { -- cgit v1.2.3