From 0c566054970c11025d7ecac413b19af767f13d88 Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Wed, 14 May 2025 19:18:31 +0200 Subject: fix: Fix psalm issue and update baseline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/private/AppFramework/Bootstrap/Coordinator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/private/AppFramework/Bootstrap') diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php index 260f54ecfcc..4e613703dec 100644 --- a/lib/private/AppFramework/Bootstrap/Coordinator.php +++ b/lib/private/AppFramework/Bootstrap/Coordinator.php @@ -87,7 +87,8 @@ class Coordinator { $this->eventLogger->start("bootstrap:register_app:$appId:application", "Load `Application` instance for $appId"); try { /** @var IBootstrap&App $application */ - $apps[$appId] = $application = $this->serverContainer->query($applicationClassName); + $application = $this->serverContainer->query($applicationClassName); + $apps[$appId] = $application; } catch (QueryException $e) { // Weird, but ok $this->eventLogger->end("bootstrap:register_app:$appId"); -- cgit v1.2.3