| Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-metadata-api/Model/ |
| Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-metadata-api/Model/ReadFileInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\MediaGalleryMetadataApi\Model;
/**
* File reader
* @api
*/
interface ReadFileInterface
{
/**
* Create file object from the file
*
* @param string $path
* @return FileInterface
*/
public function execute(string $path): FileInterface;
}