aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-04-29 17:35:30 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-05-20 11:29:15 +0200
commitfc441eeace33c39d9037adfb1f90bb67ffce5467 (patch)
tree5122c118b58e56605695f8bf13d6d460334a0c36 /lib
parente7e4f5b129030b575823363941217fe4847190fd (diff)
downloadnextcloud-server-fc441eeace33c39d9037adfb1f90bb67ffce5467.tar.gz
nextcloud-server-fc441eeace33c39d9037adfb1f90bb67ffce5467.zip
fix: Fix psalm issue and update baseline
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php
index e00179fbab4..c22e7b702f7 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -792,6 +792,7 @@ class OC {
if (PHP_VERSION_ID >= 80400) {
/* FIXME On 8.4 constructor is not called unless we do that or use the object */
$reflector = new \ReflectionClass(\OC\Core\Application::class);
+ /** @psalm-suppress UndefinedMethod */
$reflector->initializeLazyObject($coreApplication);
}
}