ImaginaryPDF.php 289 B

1234567891011121314
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OC\Preview;
  7. class ImaginaryPDF extends Imaginary {
  8. public static function supportedMimeTypes(): string {
  9. return '/application\/pdf/';
  10. }
  11. }