rector/vendor/symfony/http-client-contracts/ResponseStreamInterface.php
Tomas Votruba adc6b8148a Updated Rector to commit f7eeebaa7bdb96a6bc7311b1fa4a4e8a19789b35
f7eeebaa7b [DeadCode] Fix non-null type check on RemoveUnusedNonEmptyArrayBeforeForeachRector (#430)
2021-07-13 05:50:47 +00:00

23 lines
675 B
PHP

<?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 RectorPrefix20210713\Symfony\Contracts\HttpClient;
/**
* Yields response chunks, returned by HttpClientInterface::stream().
*
* @author Nicolas Grekas <p@tchwork.com>
*/
interface ResponseStreamInterface extends \Iterator
{
public function key() : \RectorPrefix20210713\Symfony\Contracts\HttpClient\ResponseInterface;
public function current() : \RectorPrefix20210713\Symfony\Contracts\HttpClient\ChunkInterface;
}