mirror of
https://github.com/nextcloud/server.git
synced 2024-11-14 12:26:49 +00:00
a8bdd4f99b
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com> Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Preview;
|
|
|
|
class ImaginaryPDF extends Imaginary {
|
|
public static function supportedMimeTypes(): string {
|
|
return '/application\/pdf/';
|
|
}
|
|
}
|