X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http%2FClient.md;h=14626a7f78136e2ac27b5bf57aece85246fb6f23;hb=71a35b9d0d6597cf2a143847bcbcfef1420d0d5d;hp=4e9cb4e4be19ab0b7b5e48bc613249463976a64a;hpb=6e8ea74b6f377ff2d1a7bffc682aa773ec3400ff;p=mdref%2Fmdref-http diff --git a/http/Client.md b/http/Client.md index 4e9cb4e..14626a7 100644 --- a/http/Client.md +++ b/http/Client.md @@ -2,6 +2,12 @@ The HTTP client. See http\Client\Curl's [options](http/Client/Curl#Options:) which is the only driver currently supported. +## Changelog: + +Version | Change +--------|------- +2.3.0 | Deprecated methods:
http\Client::enablePipelining() and
http\Client::enableEvents().
Added Methods:
http\Client::configure(),
http\Client::getAvailableConfiguration() and
http\Client::getAvailableOptions(). + ## Examples: ### Sending a simple GET request: @@ -103,11 +109,11 @@ The HTTP client. See http\Client\Curl's [options](http/Client/Curl#Options:) whi ## Properties: -* private $observers = NULL - SplObjectStorage, attached observers. -* protected $options = NULL - Array of set options. -* protected $history = NULL - http\Message request/response history. -* public $recordHistory = false - Boolean flag whether to record history in http\Client::$history. +* private SplObjectStorage $observers = NULL + Attached observers. +* protected array $options = NULL + Set options. +* protected http\Message $history = NULL + Request/response history. +* public bool $recordHistory = false + Whether to record history in http\Client::$history.