Lines Matching refs:method

216 value as an array, then use the newly added `getHeaderAsArray()` method of
278 event emitter of a request, client, etc. now uses the `getEmitter` method
279 rather than the `getDispatcher` method.
283 - Use the `once()` method to add a listener that automatically removes itself
285 - Use the `listeners()` method to retrieve a list of event listeners rather than
286 the `getListeners()` method.
301 Use the `on()` method to add a listener rather than the `addListener()` method.
351 - The `send` method no longer accepts more than one request. Use `sendAll` to
370 template. You must pass an array into a creational method (e.g.,
389 - Any method that previously accepts a `GuzzleHttp\Response` object now accept a
400 the method is POST and no body is provided.
465 The `configureRedirects()` method has been removed in favor of a
653 - `readLine` has moved from an instance method to a static class method of
727 - Added an `applyOptions()` method to `Guzzle\Http\Message\Request\RequestFactoryInterface`
775 …Keeping the Host header and URL host in sync is now handled by overriding the addHeader method in …
895 setAggregator() method that accepts a `Guzzle\Http\QueryAggregator\QueryAggregatorInterface` object…
966 <command name="list_groups" method="GET" uri="groups.json">
969 <command name="search_groups" method="GET" uri='search.json?query="{{query}} type:group"'>
973 <command name="create_group" method="POST" uri="groups.json">
978 <command name="delete_group" method="DELETE" uri="groups/{{id}}.json">
982 <command name="get_group" method="GET" uri="groups/{{id}}.json">
985 <command name="update_group" method="PUT" uri="groups/{{id}}.json">
1187 // Use convenient factory method instead -- see implementation for ideas of what