summaryrefslogtreecommitdiff
path: root/vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php')
-rw-r--r--vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php b/vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php
deleted file mode 100644
index dfff554dfe..0000000000
--- a/vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * 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 <p@tchwork.com>
- *
- * @experimental in 1.1
- */
-interface ResponseStreamInterface extends \Iterator
-{
- public function key(): ResponseInterface;
-
- public function current(): ChunkInterface;
-}