Lines Matching refs:array

44   option uses PHP's `http_build_query` to convert an array to a string. If you
143 and `multipart` request options. `form_params` is an associative array of
144 strings or array of strings and is used to serialize an
152 The `body` option no longer accepts an array to send POST requests. Please use
216 value as an array, then use the newly added `getHeaderAsArray()` method of
257 - `getAll` has been removed. Use `toArray` to convert a collection to an array.
262 - `setPath` now supports appending to an existing array via the `[]` notation.
361 - The constructor now accepts only an associative array. You can include a
362 `base_url` string or array to use a URI template as the base URL of a client.
363 You can also specify a `defaults` key that is an associative array of default
370 template. You must pass an array into a creational method (e.g.,
399 a `GuzzleHttp\Post\PostBody` body if the body was passed as an array or if
411 represented by an array of values or as a string. Header values are returned
413 pass an optional argument of `true` to retrieve a header value as an array
693 …`$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest|NTLM|An…
694 `$client->setDefaultOption('auth', array('user', 'pass', 'Basic|Digest|NTLM|Any'));`
706 $command = $client->getCommand('foo', array(
707 'command.headers' => array('Test' => '123'),
713 $command = $client->getCommand('foo', array(
714 'command.request_options' => array(
715 'headers' => array('Test' => '123'),
729 …`Guzzle\Http\ClientInterface::get($uri = null, $headers = null, $options = array())`. You can stil…
732 default `array()`
741 `$client->getConfig()->setPath('request.options/headers', array('header_name' => 'value'))` or
743 `$client->setDefaultOption('headers', array('header_name' => 'value'))`.
912 public static function factory($config = array())
914 $default = array();
915 $required = array('base_url', 'username', 'api_key');
938 public static function factory($config = array())
940 $default = array();
941 $required = array('base_url', 'username', 'api_key');
975 <param name="data" type="array" location="body" filters="json_encode" doc="Group JSON"/>
988 <param name="data" type="array" location="body" filters="json_encode" doc="Group JSON"/>
1027 "type": "array",
1078 "type": "array",
1175 ExponentialBackoffPlugin::getDefaultFailureCodes(), array(429)
1190 HttpBackoffStrategy::getDefaultFailureCodes(), array(429)