Skip to content

Commit

Permalink
fix: composer run cs:fix
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M. <patrathewhiz@gmail.com>
  • Loading branch information
enjeck committed Feb 5, 2025
1 parent 691e455 commit 03ceaef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/AppInfo/Capabilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function getCapabilities(): array {
Application::APP_ID => [
'api_version' => Application::$API_VERSIONS,
'version' => $this->appManager->getAppVersion(Application::APP_ID),
'notes_path' => $this->userId !== null && $this->userId !== " " ? $this->noteUtil->getNotesFolderUserPath($this->userId) : null,
'notes_path' => $this->userId !== null && $this->userId !== ' ' ? $this->noteUtil->getNotesFolderUserPath($this->userId) : null,
],
];
}
Expand Down
1 change: 1 addition & 0 deletions tests/psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@
<file src="lib/Service/NoteUtil.php">
<MissingDependency>
<code><![CDATA[$this->getRoot()]]></code>
<code><![CDATA[$this->getRoot()->getUserFolder($userId)]]></code>
<code><![CDATA[$this->root]]></code>
<code><![CDATA[$this->root]]></code>
<code><![CDATA[$this->root]]></code>
Expand Down

0 comments on commit 03ceaef

Please sign in to comment.