* @license http://github.com/miljar/PHPExif/blob/master/LICENSE MIT License * @category PHPExif * @package Reader * @codeCoverageIgnore */ namespace PHPExif\Reader; /** * PHP Exif Reader * * Defines the interface for reader functionality * * @category PHPExif * @package Reader */ interface ReaderInterface { /** * Reads & parses the EXIF data from given file * * @param string $file * @return \PHPExif\Exif Instance of Exif object with data */ public function read($file); }