/home/techb158/immovalet.com/vendor/symfony/http-client-contracts
NameSizeModeActions
Exception/-0755rm
Test/-0755rm
.gitignore340644editdlrm
CHANGELOG.md1570644editdlrm
ChunkInterface.php20480644editdlrm
composer.json10080644editdlrm
HttpClientInterface.php58490644editdlrm
LICENSE10650644editdlrm
README.md3380644editdlrm
ResponseInterface.php48570644editdlrm
ResponseStreamInterface.php5520644editdlrm
Edit: /home/techb158/immovalet.com/vendor/symfony/http-client-contracts/ResponseStreamInterface.php (552B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\HttpClient; /** * Yields response chunks, returned by HttpClientInterface::stream(). * * @author Nicolas Grekas */ interface ResponseStreamInterface extends \Iterator { public function key(): ResponseInterface; public function current(): ChunkInterface; }