__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpClient\Response; use Symfony\Contracts\HttpClient\ChunkInterface; use Symfony\Contracts\HttpClient\ResponseInterface; use Symfony\Contracts\HttpClient\ResponseStreamInterface; /** * @author Nicolas Grekas <[email protected]> */ final class ResponseStream implements ResponseStreamInterface { private \Generator $generator; public function __construct(\Generator $generator) { $this->generator = $generator; } public function key(): ResponseInterface { return $this->generator->key(); } public function current(): ChunkInterface { return $this->generator->current(); } public function next(): void { $this->generator->next(); } public function rewind(): void { $this->generator->rewind(); } public function valid(): bool { return $this->generator->valid(); } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AmpResponse.php | File | 16.32 KB | 0664 |
|
| AsyncContext.php | File | 5.66 KB | 0664 |
|
| AsyncResponse.php | File | 16.57 KB | 0664 |
|
| CommonResponseTrait.php | File | 4.79 KB | 0664 |
|
| CurlResponse.php | File | 18.28 KB | 0664 |
|
| HttplugPromise.php | File | 1.79 KB | 0664 |
|
| JsonMockResponse.php | File | 957 B | 0664 |
|
| MockResponse.php | File | 11.46 KB | 0664 |
|
| NativeResponse.php | File | 13.46 KB | 0664 |
|
| ResponseStream.php | File | 1.13 KB | 0664 |
|
| StreamWrapper.php | File | 9.15 KB | 0664 |
|
| StreamableInterface.php | File | 1.13 KB | 0664 |
|
| TraceableResponse.php | File | 6.58 KB | 0664 |
|
| TransportResponseTrait.php | File | 11.19 KB | 0664 |
|