Open Monograph Press  3.3.0
RequestOptions.php
1 <?php
2 namespace GuzzleHttp;
3 
11 final class RequestOptions
12 {
34  const ALLOW_REDIRECTS = 'allow_redirects';
35 
43  const AUTH = 'auth';
44 
49  const BODY = 'body';
50 
58  const CERT = 'cert';
59 
67  const COOKIES = 'cookies';
68 
74  const CONNECT_TIMEOUT = 'connect_timeout';
75 
81  const DEBUG = 'debug';
82 
88  const DECODE_CONTENT = 'decode_content';
89 
93  const DELAY = 'delay';
94 
111  const EXPECT = 'expect';
112 
119  const FORM_PARAMS = 'form_params';
120 
125  const HEADERS = 'headers';
126 
133  const HTTP_ERRORS = 'http_errors';
134 
141  const IDN_CONVERSION = 'idn_conversion';
142 
148  const JSON = 'json';
149 
159  const MULTIPART = 'multipart';
160 
166  const ON_HEADERS = 'on_headers';
167 
177  const ON_STATS = 'on_stats';
178 
186  const PROGRESS = 'progress';
187 
193  const PROXY = 'proxy';
194 
201  const QUERY = 'query';
202 
208  const SINK = 'sink';
209 
216  const SYNCHRONOUS = 'synchronous';
217 
224  const SSL_KEY = 'ssl_key';
225 
230  const STREAM = 'stream';
231 
240  const VERIFY = 'verify';
241 
246  const TIMEOUT = 'timeout';
247 
252  const READ_TIMEOUT = 'read_timeout';
253 
257  const VERSION = 'version';
258 
262  const FORCE_IP_RESOLVE = 'force_ip_resolve';
263 }
GuzzleHttp
Definition: paymethod/paypal/vendor/guzzlehttp/guzzle/src/Client.php:2
GuzzleHttp\RequestOptions
Definition: RequestOptions.php:11