diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2025-01-16 12:31:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 12:31:38 +0100 |
commit | 8998e77c9d35d1c6183ac5d47f8e1ee9cdefa77f (patch) | |
tree | b351a72dd6bff23de37df4633328c0b9d0e26edb | |
parent | f40dd53eca4255cf6969d6f7bf9c36c14b514bdc (diff) | |
parent | 12028430bd199c259fcb1911c8aef684687d8065 (diff) | |
download | nextcloud-server-8998e77c9d35d1c6183ac5d47f8e1ee9cdefa77f.tar.gz nextcloud-server-8998e77c9d35d1c6183ac5d47f8e1ee9cdefa77f.zip |
Merge pull request #50196 from nextcloud/fix/template-return-type
docs: Use proper return type for custom template listing
-rw-r--r-- | lib/public/Files/Template/ICustomTemplateProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files/Template/ICustomTemplateProvider.php b/lib/public/Files/Template/ICustomTemplateProvider.php index 305f2c9a55e..6136bc4f1c0 100644 --- a/lib/public/Files/Template/ICustomTemplateProvider.php +++ b/lib/public/Files/Template/ICustomTemplateProvider.php @@ -17,7 +17,7 @@ interface ICustomTemplateProvider { /** * Return a list of additional templates that the template provider is offering * - * @return File[] + * @return Template[] * @since 21.0.0 */ public function getCustomTemplates(string $mimetype): array; |