You are here

public function PrepareBodyMiddleware::__construct in Auth0 Single Sign On 8.2

Parameters

callable $nextHandler Next handler to invoke.:

File

vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php, line 20

Class

PrepareBodyMiddleware
Prepares requests that contain a body, adding the Content-Length, Content-Type, and Expect headers.

Namespace

GuzzleHttp

Code

public function __construct(callable $nextHandler) {
  $this->nextHandler = $nextHandler;
}