mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 14:27:14 +01:00
adc6b8148a
f7eeebaa7b
[DeadCode] Fix non-null type check on RemoveUnusedNonEmptyArrayBeforeForeachRector (#430)
23 lines
675 B
PHP
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;
|
|
}
|