nextcloud/lib/private/Preview/ImaginaryPDF.php
Ferdinand Thiessen e0ba4d71b6
chore: add missing Override attribute to OC
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2026-04-28 21:29:27 +02:00

16 lines
328 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Preview;
class ImaginaryPDF extends Imaginary {
#[\Override]
public static function supportedMimeTypes(): string {
return '/application\/pdf/';
}
}