for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FileEye\MimeMap\Map;
/**
* Class for mapping file extensions to MIME types.
*
* This class has no mapping defined. It can be used for feeding updates and
* for testing purposes.
*/
class EmptyMap extends AbstractMap
{
* Singleton instance.
* @var AbstractMap
protected static $instance;
* Mapping between file extensions and MIME types.
* Intentionally left blank.
* @internal
* @var array
protected static $map = [];
}