/home/techb158/ileadtechnology.com/vendor/symfony/http-client-contracts
NameSizeModeActions
Exception/-0755rm
Test/-0755rm
.gitignore340644editdlrm
CHANGELOG.md1590644editdlrm
ChunkInterface.php20480644editdlrm
composer.json10410644editdlrm
HttpClientInterface.php57380644editdlrm
LICENSE10650644editdlrm
README.md3400644editdlrm
ResponseInterface.php48840644editdlrm
ResponseStreamInterface.php5520644editdlrm
Edit: /home/techb158/ileadtechnology.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; }