hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-content/languages/themes/the/ |
chryzalihi/www/wp-contentOLD/plugins/backwpup/vendor/Guzzle/Stream/StreamRequestFactoryInterface.php0000604 00000001533 15244454232 0031042 0 ustar 00 home <?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());
}