Lines Matching refs:Use
28 Use `\GuzzleHttp\Psr7\get_message_body_summary` as an alternative.
199 `GuzzleHttp\Post\PostFile` has been removed. Use the `multipart` option to add
241 `GuzzleHttp\get()`, `GuzzleHttp\post()`, etc.). Use a `GuzzleHttp\Client`
307 - `getAll` has been removed. Use `toArray` to convert a collection to an array.
310 - `getPath` no longer supports wildcard expressions. Use something better like
333 - Use the `once()` method to add a listener that automatically removes itself
335 - Use the `listeners()` method to retrieve a list of event listeners rather than
337 - Use `emit()` instead of `dispatch()` to emit an event from an emitter.
338 - Use `attach()` instead of `addSubscriber()` and `detach()` instead of
351 Use the `on()` method to add a listener rather than the `addListener()` method.
375 - `GuzzleHttp\StaticClient` has been removed. Use the functions provided in
401 - The `send` method no longer accepts more than one request. Use `sendAll` to
403 - `setUserAgent()` has been removed. Use a default request option instead. You
406 - `setSslVerification()` has been removed. Use default request options instead,
477 `GuzzleHttp\Message\Response::setInfo()` have been removed. Use the event
486 `GuzzleHttp\Message\Response::getRequest()` have been removed. Use the event
488 - `GuzzleHttp\Message\Response::getRedirectCount()` has been removed. Use the
491 been removed. Use `getStatusCode()` instead.
558 - `request.sent` has been removed. Use `complete`.
559 - `request.success` has been removed. Use `complete`.
561 - `request.exception` has been removed. Use `error`.
563 - `curl.callback.progress` has been removed. Use a custom `StreamInterface` to
565 - `curl.callback.write` has been removed. Use a custom `StreamInterface` to
567 - `curl.callback.read` has been removed. Use a custom `StreamInterface` to
696 - `rewind` has been removed. Use `seek(0)` for a similar behavior.
733 - Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use `$request->ge…
734 - Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultC…
735 - Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultC…
736 - Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instea…
737 - Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead.
742 - Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use
751 - Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use `$client->getDefaultOption…
752 - Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use `$client->setDefaultOption…
753 - Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use `$client->setDefaultOption('p…
789 - Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use
794 - Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use `$client->getConfig()->getPath('re…
798 - Removed `Guzzle\Http\Message\RequestInterface::canCache`. Use the CachePlugin.
799 - Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect`. Use the HistoryPlugin.
800 - Removed `Guzzle\Http\Message\RequestInterface::isRedirect`. Use the HistoryPlugin.
846 * Removed Guzzle\Parser\ParserRegister::get(). Use getParser()
847 * Removed Guzzle\Parser\ParserRegister::set(). Use registerParser().
853 * Guzzle\Http\Message\Header::raw. Use getAll()
854 * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheCo…
1237 // Use convenient factory method instead -- see implementation for ideas of what