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