| 1 | <?php  | 
            ||
| 19 | final class FileExtensionChecker implements FileExtensionCheckerInterface  | 
            ||
| 20 | { | 
            ||
| 21 | public function isAudio(string $mimeType): bool  | 
            ||
| 25 | |||
| 26 | public function isVideo(string $mimeType): bool  | 
            ||
| 30 | |||
| 31 | public function isImage(string $mimeType): bool  | 
            ||
| 35 | |||
| 36 | public function isAttachment(string $mimeType): bool  | 
            ||
| 40 | |||
| 41 | private function startsWith(string $mimeType, string $string): bool  | 
            ||
| 45 | }  | 
            ||
| 46 |