diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-04-22 18:11:32 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-04-30 09:23:58 +0200 |
commit | 672923f0a6ab5a692273326250fe1394b4e41bd9 (patch) | |
tree | 83f972fa6d854199a5be687531e99688dbb2ab2e /lib/private/AppFramework/Http | |
parent | ce2d6cd81ec5aa66e9cf5040c211e1239b4bc830 (diff) | |
download | nextcloud-server-672923f0a6ab5a692273326250fe1394b4e41bd9.tar.gz nextcloud-server-672923f0a6ab5a692273326250fe1394b4e41bd9.zip |
fix: Fix newly spotted psalm issues, add exhaustive typed magic properties for LDAP classes
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/AppFramework/Http')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index 7a614878ab5..af3993df8bd 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -57,12 +57,12 @@ use Symfony\Component\HttpFoundation\IpUtils; * Class for accessing variables in the request. * This class provides an immutable object with request variables. * - * @property mixed[] cookies - * @property mixed[] env - * @property mixed[] files - * @property string method - * @property mixed[] parameters - * @property mixed[] server + * @property mixed[] $cookies + * @property mixed[] $env + * @property mixed[] $files + * @property string $method + * @property mixed[] $parameters + * @property mixed[] $server * @template-implements \ArrayAccess<string,mixed> */ class Request implements \ArrayAccess, \Countable, IRequest { |