1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Symfony\Component\HttpClient\Response;
- use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
- use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
- use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
- use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
- interface StreamableInterface
- {
-
- public function toStream(bool $throw = true);
- }
|