Push a middleware to the top of the stack.
callable(callable): callable $middleware Middleware function:
string $name Name to register for this middleware.:
public function push(callable $middleware, string $name = '') : void { $this->stack[] = [ $middleware, $name, ]; $this->cached = null; }