diff options
author | Andrey Borysenko <andrey18106x@gmail.com> | 2024-03-12 18:14:40 +0200 |
---|---|---|
committer | Andrey Borysenko <andrey18106x@gmail.com> | 2024-03-12 18:14:40 +0200 |
commit | 865fd3ba082a36605ef3df689c714cfad63eada7 (patch) | |
tree | 7d5330472ea37b93d32218f8a02be7e7033653fd /lib/private/AppFramework/Bootstrap | |
parent | a7ff09d9695c1663abba645144e1554a4555f37a (diff) | |
download | nextcloud-server-865fd3ba082a36605ef3df689c714cfad63eada7.tar.gz nextcloud-server-865fd3ba082a36605ef3df689c714cfad63eada7.zip |
fix: add missing copyrights and strict types
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Diffstat (limited to 'lib/private/AppFramework/Bootstrap')
-rw-r--r-- | lib/private/AppFramework/Bootstrap/RegistrationContext.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/AppFramework/Bootstrap/RegistrationContext.php b/lib/private/AppFramework/Bootstrap/RegistrationContext.php index 95f59d243c6..b1b2c57da55 100644 --- a/lib/private/AppFramework/Bootstrap/RegistrationContext.php +++ b/lib/private/AppFramework/Bootstrap/RegistrationContext.php @@ -908,6 +908,13 @@ class RegistrationContext { } /** + * @return ServiceRegistration<ITeamResourceProvider>[] + */ + public function getTeamResourceProviders(): array { + return $this->teamResourceProviders; + } + + /** * @return ServiceRegistration<IDeclarativeSettingsForm>[] */ public function getDeclarativeSettings(): array { |