123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- <?php
- namespace GuzzleHttp;
- final class RequestOptions
- {
-
- public const ALLOW_REDIRECTS = 'allow_redirects';
-
- public const AUTH = 'auth';
-
- public const BODY = 'body';
-
- public const CERT = 'cert';
-
- public const COOKIES = 'cookies';
-
- public const CONNECT_TIMEOUT = 'connect_timeout';
-
- public const CRYPTO_METHOD = 'crypto_method';
-
- public const DEBUG = 'debug';
-
- public const DECODE_CONTENT = 'decode_content';
-
- public const DELAY = 'delay';
-
- public const EXPECT = 'expect';
-
- public const FORM_PARAMS = 'form_params';
-
- public const HEADERS = 'headers';
-
- public const HTTP_ERRORS = 'http_errors';
-
- public const IDN_CONVERSION = 'idn_conversion';
-
- public const JSON = 'json';
-
- public const MULTIPART = 'multipart';
-
- public const ON_HEADERS = 'on_headers';
-
- public const ON_STATS = 'on_stats';
-
- public const PROGRESS = 'progress';
-
- public const PROXY = 'proxy';
-
- public const QUERY = 'query';
-
- public const SINK = 'sink';
-
- public const SYNCHRONOUS = 'synchronous';
-
- public const SSL_KEY = 'ssl_key';
-
- public const STREAM = 'stream';
-
- public const VERIFY = 'verify';
-
- public const TIMEOUT = 'timeout';
-
- public const READ_TIMEOUT = 'read_timeout';
-
- public const VERSION = 'version';
-
- public const FORCE_IP_RESOLVE = 'force_ip_resolve';
- }
|