You are here

public static function HandlerStack::create in Lockr 7.3

Creates a default handler stack that can be used by clients.

The returned handler will wrap the provided handler or use the most appropriate default handler for your system. The returned HandlerStack has support for cookies, redirects, HTTP error exceptions, and preparing a body before sending.

The returned handler stack can be passed to a client in the "handler" option.

Parameters

callable $handler HTTP handler function to use with the stack. If no: handler is provided, the best handler for your system will be utilized.

Return value

HandlerStack

2 calls to HandlerStack::create()
Client::__construct in vendor/guzzlehttp/guzzle/src/Client.php
Clients accept an array of constructor parameters.
MockHandler::createWithMiddleware in vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php
Creates a new MockHandler that uses the default handler stack list of middlewares.

File

vendor/guzzlehttp/guzzle/src/HandlerStack.php, line 38

Class

HandlerStack
Creates a composed Guzzle handler function by stacking middlewares on top of an HTTP handler function.

Namespace

GuzzleHttp

Code

public static function create(callable $handler = null) {
  $stack = new self($handler ?: choose_handler());
  $stack
    ->push(Middleware::httpErrors(), 'http_errors');
  $stack
    ->push(Middleware::redirect(), 'allow_redirects');
  $stack
    ->push(Middleware::cookies(), 'cookies');
  $stack
    ->push(Middleware::prepareBody(), 'prepare_body');
  return $stack;
}