You are here

public function HandlerStack::unshift in Lockr 7.3

Unshift a middleware to the bottom of the stack.

Parameters

callable $middleware Middleware function:

string $name Name to register for this middleware.:

File

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

Class

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

Namespace

GuzzleHttp

Code

public function unshift(callable $middleware, $name = null) {
  array_unshift($this->stack, [
    $middleware,
    $name,
  ]);
  $this->cached = null;
}