diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-02-05 18:08:26 +0100 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-02-06 10:24:41 +0100 |
commit | f73f966c98fc4ac6ede61d745dc09373820793b2 (patch) | |
tree | d3aaa2a500be9279b89ac9910d47e016b1c749db /lib/private/AppFramework | |
parent | 52fd96d17c6d601db4815e322e5ac66bacd6e0b0 (diff) | |
download | nextcloud-server-f73f966c98fc4ac6ede61d745dc09373820793b2.tar.gz nextcloud-server-f73f966c98fc4ac6ede61d745dc09373820793b2.zip |
chore: Add missing ArrayAccess template parameters
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/AppFramework')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index e913c83fa8d..72ecffa773f 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -63,6 +63,7 @@ use Symfony\Component\HttpFoundation\IpUtils; * @property string method * @property mixed[] parameters * @property mixed[] server + * @template-implements \ArrayAccess<string,mixed> */ class Request implements \ArrayAccess, \Countable, IRequest { public const USER_AGENT_IE = '/(MSIE)|(Trident)/'; |