diff options
author | provokateurin <kate@provokateurin.de> | 2024-05-22 16:20:34 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-06-03 15:12:32 +0000 |
commit | 622b88a3afc64055a84f2e714dd073b16dd47b88 (patch) | |
tree | 64e3571b1b32699e3af8c32affb0aecb0a377484 /lib | |
parent | 806e390d14123f0bdf9e805bd55553339a0b5d3b (diff) | |
download | nextcloud-server-622b88a3afc64055a84f2e714dd073b16dd47b88.tar.gz nextcloud-server-622b88a3afc64055a84f2e714dd073b16dd47b88.zip |
fix(INavigationManager): Fix psalm alias not set in the right place
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/INavigationManager.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/public/INavigationManager.php b/lib/public/INavigationManager.php index 36f80c3293f..d1e5e674ab0 100644 --- a/lib/public/INavigationManager.php +++ b/lib/public/INavigationManager.php @@ -33,12 +33,10 @@ namespace OCP; /** - * @psalm-type NavigationEntry = array{id: string, order: int, href: string, name: string, app?: string, icon?: string, classes?: string, type?: string} - */ - -/** * Manages the ownCloud navigation * @since 6.0.0 + * + * @psalm-type NavigationEntry = array{id: string, order: int, href: string, name: string, app?: string, icon?: string, classes?: string, type?: string} */ interface INavigationManager { /** |