Open Journal Systems  3.3.0
RequestFactoryInterface.php
1 <?php
2 
3 namespace Guzzle\Http\Message;
4 
8 
13 {
14  const OPTIONS_NONE = 0;
16 
24  public function fromMessage($message);
25 
46  public function fromParts(
47  $method,
48  array $urlParts,
49  $headers = null,
50  $body = null,
51  $protocol = 'HTTP',
52  $protocolVersion = '1.1'
53  );
54 
66  public function create($method, $url, $headers = null, $body = null, array $options = array());
67 
104  public function applyOptions(RequestInterface $request, array $options = array(), $flags = self::OPTIONS_NONE);
105 }
Guzzle\Http\Message\RequestInterface
Definition: lib/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php:16
Guzzle\Http\Message\RequestFactoryInterface\fromMessage
fromMessage($message)
Guzzle\Http\EntityBodyInterface
Definition: EntityBodyInterface.php:10
Guzzle\Http\Message\RequestFactoryInterface
Definition: RequestFactoryInterface.php:12
Guzzle\Http\Message
Definition: AbstractMessage.php:3
Guzzle\Http\Url
Definition: Url.php:10
Guzzle\Http\Message\RequestFactoryInterface\create
create($method, $url, $headers=null, $body=null, array $options=array())
Guzzle\Http\Message\RequestFactoryInterface\OPTIONS_AS_DEFAULTS
const OPTIONS_AS_DEFAULTS
Definition: RequestFactoryInterface.php:15
Guzzle\Http\Message\RequestFactoryInterface\fromParts
fromParts( $method, array $urlParts, $headers=null, $body=null, $protocol='HTTP', $protocolVersion='1.1')
Guzzle\Http\Message\RequestFactoryInterface\applyOptions
applyOptions(RequestInterface $request, array $options=array(), $flags=self::OPTIONS_NONE)
Guzzle\Common\Collection
Definition: paymethod/paypal/lib/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php:11
Guzzle\Http\Message\RequestFactoryInterface\OPTIONS_NONE
const OPTIONS_NONE
Definition: RequestFactoryInterface.php:14