Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-metadata-api/Model/
Upload File :
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;
}