Lines Matching refs:Use

149 `GuzzleHttp\Post\PostFile` has been removed. Use the `multipart` option to add
191 `GuzzleHttp\get()`, `GuzzleHttp\post()`, etc.). Use a `GuzzleHttp\Client`
257 - `getAll` has been removed. Use `toArray` to convert a collection to an array.
260 - `getPath` no longer supports wildcard expressions. Use something better like
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
287 - Use `emit()` instead of `dispatch()` to emit an event from an emitter.
288 - Use `attach()` instead of `addSubscriber()` and `detach()` instead of
301 Use the `on()` method to add a listener rather than the `addListener()` method.
325 - `GuzzleHttp\StaticClient` has been removed. Use the functions provided in
351 - The `send` method no longer accepts more than one request. Use `sendAll` to
353 - `setUserAgent()` has been removed. Use a default request option instead. You
356 - `setSslVerification()` has been removed. Use default request options instead,
427 `GuzzleHttp\Message\Response::setInfo()` have been removed. Use the event
436 `GuzzleHttp\Message\Response::getRequest()` have been removed. Use the event
438 - `GuzzleHttp\Message\Response::getRedirectCount()` has been removed. Use the
441 been removed. Use `getStatusCode()` instead.
508 - `request.sent` has been removed. Use `complete`.
509 - `request.success` has been removed. Use `complete`.
511 - `request.exception` has been removed. Use `error`.
513 - `curl.callback.progress` has been removed. Use a custom `StreamInterface` to
515 - `curl.callback.write` has been removed. Use a custom `StreamInterface` to
517 - `curl.callback.read` has been removed. Use a custom `StreamInterface` to
646 - `rewind` has been removed. Use `seek(0)` for a similar behavior.
683 - Marked `Guzzle\Http\Message\Request::isResponseBodyRepeatable()` as deprecated. Use `$request->ge…
684 - Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultC…
685 - Marked `Guzzle\Http\Message\Request::canCache()` as deprecated. Use `Guzzle\Plugin\Cache\DefaultC…
686 - Marked `Guzzle\Http\Message\Request::setIsRedirect()` as deprecated. Use the HistoryPlugin instea…
687 - Marked `Guzzle\Http\Message\Request::isRedirect()` as deprecated. Use the HistoryPlugin instead.
692 - Marked `Guzzle\Plugin\CurlAuth\CurlAuthPlugin` as deprecated. Use
701 - Marked `Guzzle\Service\Client::getDefaultHeaders()` as deprecated. Use `$client->getDefaultOption…
702 - Marked `Guzzle\Service\Client::setDefaultHeaders()` as deprecated. Use `$client->setDefaultOption…
703 - Marked 'request.params' for `Guzzle\Http\Client` as deprecated. Use `$client->setDefaultOption('p…
739 - Removed `Guzzle\Http\ClientInterface::setDefaultHeaders(). Use
744 - Removed `Guzzle\Http\ClientInterface::getDefaultHeaders(). Use `$client->getConfig()->getPath('re…
748 - Removed `Guzzle\Http\Message\RequestInterface::canCache`. Use the CachePlugin.
749 - Removed `Guzzle\Http\Message\RequestInterface::setIsRedirect`. Use the HistoryPlugin.
750 - Removed `Guzzle\Http\Message\RequestInterface::isRedirect`. Use the HistoryPlugin.
796 * Removed Guzzle\Parser\ParserRegister::get(). Use getParser()
797 * Removed Guzzle\Parser\ParserRegister::set(). Use registerParser().
803 * Guzzle\Http\Message\Header::raw. Use getAll()
804 * Deprecated cache control specific methods on Guzzle\Http\Message\AbstractMessage. Use the CacheCo…
1187 // Use convenient factory method instead -- see implementation for ideas of what