1 | <?php |
||
12 | final class ResetIdMiddleware implements MiddlewareInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $idName; |
||
18 | |||
19 | 4 | public function __construct(string $idName = 'id') |
|
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | 4 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
36 | } |
||
37 |