diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2022-09-15 10:53:38 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2022-09-15 10:54:36 -0100 |
commit | b9ccc60837007cba820e3439a66b09ff5c5256e7 (patch) | |
tree | 03827a9ac6a79ebb463452376f70287f006a5f91 /lib | |
parent | 0efd6d995037bc34de714024f137fecdbdc50a69 (diff) | |
download | nextcloud-server-b9ccc60837007cba820e3439a66b09ff5c5256e7.tar.gz nextcloud-server-b9ccc60837007cba820e3439a66b09ff5c5256e7.zip |
fix phpdoc
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/App/IAppManager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index ef8a7b8d9f0..f7c9d848099 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -84,12 +84,12 @@ interface IAppManager { public function isInstalled($appId); /** - * Check if an app is enabled by default + * Check if an app should be enabled by default * * Notice: This actually checks if the app should be enabled by default * and not if currently installed/enabled * - * @param string $appId + * @param string $appId ID of the app * @since 25.0.0 */ public function isDefaultEnabled(string $appId):bool; |