diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-03-27 14:27:23 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-03-27 14:27:23 +0200 |
commit | e94a689bca339dda23afd1c22c606bc8628279b6 (patch) | |
tree | e93fe4230d9323ddf52125f493e60f23f0b9bca6 /lib/public | |
parent | 6741b373560f969707dd96be44d18182c1ec4848 (diff) | |
download | nextcloud-server-e94a689bca339dda23afd1c22c606bc8628279b6.tar.gz nextcloud-server-e94a689bca339dda23afd1c22c606bc8628279b6.zip |
Fix version number in phpdoc for app loading refactor
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/App/IAppManager.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index faaf871a74c..0148d2f489e 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -96,14 +96,14 @@ interface IAppManager { /** * Load an app, if not already loaded * @param string $app app id - * @since 26.0.0 + * @since 27.0.0 */ public function loadApp(string $app): void; /** * Check if an app is loaded * @param string $app app id - * @since 26.0.0 + * @since 27.0.0 */ public function isAppLoaded(string $app): bool; @@ -207,13 +207,13 @@ interface IAppManager { * exists. * * if $types is set to non-empty array, only apps of those types will be loaded - * @since 26.0.0 + * @since 27.0.0 */ public function loadApps(array $types = []): bool; /** * Check if an app is of a specific type - * @since 26.0.0 + * @since 27.0.0 */ public function isType(string $app, array $types): bool; |