public function HandlerStack::push in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/guzzle/src/HandlerStack.php \GuzzleHttp\HandlerStack::push()
Push a middleware to the top of the stack.
Parameters
callable $middleware Middleware function:
string $name Name to register for this middleware.:
File
- vendor/
guzzlehttp/ guzzle/ src/ HandlerStack.php, line 142
Class
- HandlerStack
- Creates a composed Guzzle handler function by stacking middlewares on top of an HTTP handler function.
Namespace
GuzzleHttpCode
public function push(callable $middleware, $name = '') {
$this->stack[] = [
$middleware,
$name,
];
$this->cached = null;
}