diff options
author | Robin Appelman <robin@icewind.nl> | 2019-06-04 15:25:25 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-06-17 14:09:09 +0200 |
commit | 615061437422499025e038483504d4ef2004c8e1 (patch) | |
tree | bd8752decea5d8c10fea43bdcdd92c38c26ebf30 /lib/private/Preview/Font.php | |
parent | f6ad353c7c1176bcaa167051c9f3e118e69f7a20 (diff) | |
download | nextcloud-server-615061437422499025e038483504d4ef2004c8e1.tar.gz nextcloud-server-615061437422499025e038483504d4ef2004c8e1.zip |
Add new Provider interface for preview providers
the main difference is passing the `File` object to the provider
instead of a `View` + path
Old providers will still continue to work as before
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Preview/Font.php')
-rw-r--r-- | lib/private/Preview/Font.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Preview/Font.php b/lib/private/Preview/Font.php index 4d5732eb880..3f24bf3e738 100644 --- a/lib/private/Preview/Font.php +++ b/lib/private/Preview/Font.php @@ -27,7 +27,7 @@ class Font extends Bitmap { /** * {@inheritDoc} */ - public function getMimeType() { + public function getMimeType(): string { return '/application\/(?:font-sfnt|x-font$)/'; } -}
\ No newline at end of file +} |