| 1 | <?php |
||
| 13 | trait MiddlewareBuilderTrait |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @psalm-var list<string|Closure> |
||
| 17 | */ |
||
| 18 | protected $middlewares = []; |
||
| 19 | |||
| 20 | public function middlewares(...$middlewares) |
||
| 21 | { |
||
| 22 | $this->middlewares = $middlewares; |
||
| 23 | |||
| 24 | return $this; |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function buildMiddlewares(EndpointConfigurationInterface $configuration) |
||
| 31 | } |
||
| 32 |