diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-12-10 09:37:38 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-12-10 17:06:32 +0100 |
commit | 8ebd31d6868b494789325ca6a5e81418242bcafe (patch) | |
tree | 3f4ffb5987c7e43451215cc62e5937846dd87f28 /lib/private | |
parent | 27fdc6575d71a039db75164842263a1ed864ca47 (diff) | |
download | nextcloud-server-8ebd31d6868b494789325ca6a5e81418242bcafe.tar.gz nextcloud-server-8ebd31d6868b494789325ca6a5e81418242bcafe.zip |
Make $vars and $secureRandom required.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 4 |
1 files changed, 2 insertions, 2 deletions
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') { |