Alpha ZealPHP is early-stage and under active development. APIs may change between minor versions until v1.0. Feedback and bug reports welcome on GitHub.
API Index — Namespaces, Packages, Reports, Indices

MiddlewareFrame.php

Table of Contents

Classes

MiddlewareFrame
One frame of a middleware onion: pairs a PSR-15 middleware with the RequestHandler it wraps, so a chain can be assembled as nested handlers (new MiddlewareFrame($m0, new MiddlewareFrame($m1, $terminal))). Calling handle() runs the middleware's process(), handing it the inner handler as $next. Stateless and cheap — a couple of object fields, no clone-per-step.
On this page