15 lines
285 B
PHP
15 lines
285 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Preview;
|
|
|
|
class ImaginaryPDF extends Imaginary {
|
|
public static function supportedMimeTypes(): string {
|
|
return '/application\/pdf/';
|
|
}
|
|
}
|