Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?php | |
| /** | |
| * | |
| * This file is part of the phpBB Forum Software package. | |
| * | |
| * @copyright (c) phpBB Limited <https://www.phpbb.com> | |
| * @license GNU General Public License, version 2 (GPL-2.0) | |
| * | |
| * For full copyright and license information, please see | |
| * the docs/CREDITS.txt file. | |
| * | |
| */ | |
| namespace phpbb\mimetype; | |
| interface guesser_interface | |
| { | |
| /** | |
| * Returns whether this guesser is supported on the current OS | |
| * | |
| * @return bool True if guesser is supported, false if not | |
| */ | |
| public function is_supported(); | |
| /** | |
| * Guess mimetype of supplied file | |
| * | |
| * @param string $file Path to file | |
| * @param string $file_name The real file name | |
| * | |
| * @return string Guess for mimetype of file | |
| */ | |
| public function guess($file, $file_name = ''); | |
| /** | |
| * Get the guesser priority | |
| * | |
| * @return int Guesser priority | |
| */ | |
| public function get_priority(); | |
| /** | |
| * Set the guesser priority | |
| * | |
| * @param int Guesser priority | |
| * | |
| * @return void | |
| */ | |
| public function set_priority($priority); | |
| } |