12345678910111213141516171819202122232425 |
- <?php
- namespace OC\Preview;
- class Illustrator extends Bitmap {
-
- public function getMimeType(): string {
- return '/application\/illustrator/';
- }
-
- protected function getAllowedMimeTypes(): string {
- return '/application\/(illustrator|pdf)/';
- }
- }
|