mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 14:27:14 +01:00
84f68c601f
daa44253f9
[DowngradePhp74][DowngradePhp80] Apply ternary with method_exists on DowngradeReflectionGetTypeRector + DowngradeReflectionGetAttributesRector (#1530)
25 lines
735 B
PHP
25 lines
735 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 RectorPrefix20211220\Symfony\Contracts\HttpClient;
|
|
|
|
/**
|
|
* Yields response chunks, returned by HttpClientInterface::stream().
|
|
*
|
|
* @author Nicolas Grekas <p@tchwork.com>
|
|
*
|
|
* @extends \Iterator<ResponseInterface, ChunkInterface>
|
|
*/
|
|
interface ResponseStreamInterface extends \Iterator
|
|
{
|
|
public function key() : \RectorPrefix20211220\Symfony\Contracts\HttpClient\ResponseInterface;
|
|
public function current() : \RectorPrefix20211220\Symfony\Contracts\HttpClient\ChunkInterface;
|
|
}
|