Esc
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))). Callinghandle()runs the middleware'sprocess(), handing it the inner handler as$next. Stateless and cheap — a couple of object fields, no clone-per-step.