mirror of
https://0xacab.org/radar/radar-wp.git
synced 2025-06-09 05:06:26 +02:00
Initial import.
This commit is contained in:
commit
86383280c9
428 changed files with 68738 additions and 0 deletions
24
vendor/guzzle/stream/Guzzle/Stream/StreamRequestFactoryInterface.php
vendored
Normal file
24
vendor/guzzle/stream/Guzzle/Stream/StreamRequestFactoryInterface.php
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?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());
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue