assertEquals( Mime::detect($test), $output, ); } /** * Provider for testDetect * * @return mixed[] data for testDetect */ public static function providerForTestDetect(): array { return [ ['pma', 'application/octet-stream'], ['GIF', 'image/gif'], ["\x89PNG", 'image/png'], [chr(0xff) . chr(0xd8), 'image/jpeg'], ]; } }