1234567891011121314151617181920212223 |
- <?php
- /**
- * Interface of response sending file content
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Response;
- /**
- * Interface \Magento\Framework\App\Response\FileInterface
- *
- */
- interface FileInterface extends HttpInterface
- {
- /**
- * Set path to the file being sent
- *
- * @param string $path
- * @return void
- */
- public function setFilePath($path);
- }
|