| 1 | <?php |
||
| 8 | trait MiddlewareStackTrait |
||
| 9 | { |
||
| 10 | protected $middlewareStack; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Push a middleware onto the top of this stack. |
||
| 14 | * |
||
| 15 | * @param callable $newTopMiddleware the middleware to be pushed onto the top. |
||
| 16 | * |
||
| 17 | * @return static $this |
||
| 18 | */ |
||
| 19 | protected function push(callable $newTopMiddleware) |
||
| 37 | } |
||
| 38 |