1 | <?php |
||
5 | class MIMEFileProvider implements MIMEProvider { |
||
6 | protected $file; |
||
7 | |||
8 | protected $cache; |
||
9 | |||
10 | public function __construct($filePath = '/etc/mime.types') { |
||
13 | |||
14 | //Borrowed from http://stackoverflow.com/a/1147952 |
||
15 | public function getAll(): array { |
||
38 | |||
39 | //Borrowed from http://stackoverflow.com/a/1147952 |
||
40 | public function getByFileExtension($extension): string { |
||
48 | } |
||
49 |