2 declare(strict_types
= 1);
4 namespace TYPO3\CMS\Core\
Resource\Driver
;
7 * This file is part of the TYPO3 CMS project.
9 * It is free software; you can redistribute it and/or modify it under
10 * the terms of the GNU General Public License, either version 2
11 * of the License, or any later version.
13 * For the full copyright and license information, please read the
14 * LICENSE.txt file that was distributed with this source code.
16 * The TYPO3 project - inspiring people to share!
19 use Psr\Http\Message\ResponseInterface
;
22 * An interface FAL drivers have to implement to fulfil the needs
23 * of streaming files using PSR-7 Response objects.
27 interface StreamableDriverInterface
30 * Streams a file using a PSR-7 Response object.
32 * @param string $identifier
33 * @param array $properties
34 * @return ResponseInterface
36 public function streamFile(string $identifier, array $properties): ResponseInterface
;