Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/framework/App/Response/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/App/Response/FileInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\App\Response;

/**
 * Interface \Magento\Framework\App\Response\FileInterface
 *
 * @api
 */
interface FileInterface extends HttpInterface
{
    /**
     * Set path to the file being sent
     *
     * @param string $path
     * @return void
     */
    public function setFilePath($path);
}