Lines Matching refs:has

20 - The `guzzlehttp/streams` dependency has been removed. Stream functionality
29 Note: there has been movement in the React project to modify promises to
38 - `GuzzleHttp\Mimetypes` has been moved to a function in
49 - Guzzle no longer has a dependency on RingPHP. Due to the use of a middleware
58 integration has been removed. Note: while the event system has been removed,
83 - `GuzzleHttp\ClientInterface::getDefaultOption` has been renamed to
85 - `GuzzleHttp\ClientInterface::setDefaultOption` has been removed.
86 - The `json` and `xml` methods of response objects has been removed. With the
98 middlewares) or setting a value on an object. Guzzle v6 has chosen the
129 // Create a handler stack that has all of the default middlewares attached
149 `GuzzleHttp\Post\PostFile` has been removed. Use the `multipart` option to add
155 The `base_url` option has been renamed to `base_uri`.
164 is still supported, but it has now been renamed to `handler`. Instead of
190 The "procedural" global client has been removed with no replacement (e.g.,
194 ## `throwImmediately` has been removed
196 The concept of "throwImmediately" has been removed from exceptions and error
202 ## headers event has been removed
207 FnStream that has access to the transaction being sent. For example, when the
239 The `Guzzle\Batch` namespace has been removed. This is best left to
244 The `Guzzle\Cache` namespace has been removed. (Todo: No suitable replacement
245 has been implemented yet, but hoping to utilize a PSR cache interface).
251 - `FromConfigInterface` has been removed.
252 - `Guzzle\Common\Version` has been removed. The VERSION constant can be found
257 - `getAll` has been removed. Use `toArray` to convert a collection to an array.
258 - `inject` has been removed.
259 - `keySearch` has been removed.
274 `GuzzleHttp\Event\Event`, and Guzzle now has an EventInterface in
276 - `AbstractHasDispatcher` has moved to a trait, `HasEmitterTrait`, and
277 `HasDispatcherInterface` has moved to `HasEmitterInterface`. Retrieving the
314 - The cacert.pem certificate has been moved to `src/cacert.pem`.
321 - `Guzzle\Http\Url` has moved to `GuzzleHttp\Url`.
322 - `Guzzle\Http\QueryString` has moved to `GuzzleHttp\Query`.
325 - `GuzzleHttp\StaticClient` has been removed. Use the functions provided in
349 `GuzzleHttp\ClientInterface` has changed.
353 - `setUserAgent()` has been removed. Use a default request option instead. You
356 - `setSslVerification()` has been removed. Use default request options instead,
359 `GuzzleHttp\Client` has changed.
376 longer has a reference to it's response, and a response no loger has a
387 contain a body has been removed, and now `GuzzleHttp\Message\RequestInterface`
391 - `GuzzleHttp\Message\RequestFactoryInterface` has been renamed to
410 - `GuzzleHttp\Message\Header` has been removed. Header values are now simply
416 `GuzzleHttp\Post`. This interface has been simplified and now allows the
420 subscribers/plugins, and `GuzzleHttp\Message\HeaderValues::parseParams()` has
429 - `GuzzleHttp\Message\Response::getRawHeaders()` has been removed.
430 - `GuzzleHttp\Message\Response::getMessage()` has been removed.
438 - `GuzzleHttp\Message\Response::getRedirectCount()` has been removed. Use the
465 The `configureRedirects()` method has been removed in favor of a
492 - `Guzzle\Http\IoEmittyinEntityBody` has been removed.
497 emitted over the lifecycle of a request has been significantly reduced to make
504 - `request.before_send` has been renamed to `before` and now emits a
506 - `request.complete` has been renamed to `complete` and now emits a
508 - `request.sent` has been removed. Use `complete`.
509 - `request.success` has been removed. Use `complete`.
511 - `request.exception` has been removed. Use `error`.
512 - `request.receive.status_line` has been removed.
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
532 The `Guzzle\Inflection` namespace has been removed. This is not a core concern
537 The `Guzzle\Iterator` namespace has been removed.
551 The LogPlugin has moved to https://github.com/guzzle/log-subscriber. The
552 `Guzzle\Log` namespace has been removed. Guzzle now relies on
553 `Psr\Log\LoggerInterface` for all logging. The MessageFormatter class has been
558 The `Guzzle\Parser` namespace has been removed. This was previously used to
561 so it has been removed.
563 - Cookie: Cookie parsing logic has been moved to
565 - Message: Message parsing logic for both requests and responses has been moved
569 - UriTemplate: URI template parsing has been moved to
578 The `Guzzle\Plugin` namespace has been renamed to `GuzzleHttp\Subscriber`.
582 code has moved to `GuzzleHttp\Cookie`.
594 - `GuzzleHttp\Plugin\Async` has been removed.
595 - `GuzzleHttp\Plugin\CurlAuth` has been removed.
596 - `GuzzleHttp\Plugin\ErrorResponse\ErrorResponsePlugin` has been removed. This
603 - `Guzzle\Http\Plugin\BackoffPlugin` has been rewritten to be much simpler
606 - `Guzzle\Http\Plugin\Cache\CachePlugin` has moved to
608 - `Guzzle\Http\Plugin\Log\LogPlugin` has moved to
610 - `Guzzle\Http\Plugin\Md5\Md5Plugin` has moved to
612 - `Guzzle\Http\Plugin\Mock\MockPlugin` has moved to
614 - `Guzzle\Http\Plugin\Oauth\OauthPlugin` has moved to
619 The service description layer of Guzzle has moved into two separate packages:
632 `Guzzle\Stream\StreamInterface` has been given a large update to cleanly take
635 of methods implemented by the `StreamInterface` has been drastically reduced to
646 - `rewind` has been removed. Use `seek(0)` for a similar behavior.
650 - `detachStream` has been renamed to `detach`.
651 - `feof` has been renamed to `eof`.
652 - `ftell` has been renamed to `tell`.
653 - `readLine` has moved from an instance method to a static class method of
658 `GuzzleHttp\Stream\MetadataStreamInterface` has been added to denote streams
665 The entire concept of the StreamRequestFactory has been removed. The way this
758 - `CacheStorageInterface::cache($key, Response $response, $ttl = null)` has changed to `cache(Reque…
760 - `CacheStorageInterface::fetch($key)` has changed to `fetch(RequestInterface $request);`
761 - `CacheStorageInterface::delete($key)` has changed to `delete(RequestInterface $request);`
764 $plugin)` has changed to `DefaultRevalidation::__construct(CacheStorageInterface $cache,
894 … query parameters are no longer aggregated using a callback function. `Guzzle\Http\Query` now has a