1 | <?php |
||
16 | final class GetPermissionHistoryAction implements MiddlewareInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var Selectable |
||
20 | */ |
||
21 | private $historyRepository; |
||
22 | /** |
||
23 | * @var HydratorInterface |
||
24 | */ |
||
25 | private $hydrator; |
||
26 | |||
27 | 2 | public function __construct(Selectable $historyRepository, HydratorInterface $hydrator) |
|
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | 2 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
45 | } |
||
46 |