Merge pull request #50196 from nextcloud/fix/template-return-type

docs: Use proper return type for custom template listing
This commit is contained in:
Arthur Schiwon 2025-01-16 12:31:38 +01:00 committed by GitHub
commit 8998e77c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;