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