Skip to content

Commit 0c56605

Browse files
committed
fix: Fix psalm issue and update baseline
Signed-off-by: Côme Chilliet <[email protected]>
1 parent 20c6d1a commit 0c56605

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

build/psalm-baseline.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,11 +1266,6 @@
12661266
<code><![CDATA[$this->request->server]]></code>
12671267
</NoInterfaceProperties>
12681268
</file>
1269-
<file src="lib/autoloader.php">
1270-
<RedundantCondition>
1271-
<code><![CDATA[$this->memoryCache]]></code>
1272-
</RedundantCondition>
1273-
</file>
12741269
<file src="lib/base.php">
12751270
<InvalidArgument>
12761271
<code><![CDATA[$restrictions]]></code>

lib/private/AppFramework/Bootstrap/Coordinator.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ private function registerApps(array $appIds): void {
8787
$this->eventLogger->start("bootstrap:register_app:$appId:application", "Load `Application` instance for $appId");
8888
try {
8989
/** @var IBootstrap&App $application */
90-
$apps[$appId] = $application = $this->serverContainer->query($applicationClassName);
90+
$application = $this->serverContainer->query($applicationClassName);
91+
$apps[$appId] = $application;
9192
} catch (QueryException $e) {
9293
// Weird, but ok
9394
$this->eventLogger->end("bootstrap:register_app:$appId");

0 commit comments

Comments
 (0)