Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class ActionCaller implements MiddlewareInterface |
||
18 | { |
||
19 | private $class; |
||
20 | private $method; |
||
21 | private $container; |
||
22 | |||
23 | public function __construct(string $class, string $method, ContainerInterface $container) |
||
28 | } |
||
29 | |||
30 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
34 | } |
||
35 | |||
36 | public static function __set_state(array $state): self |
||
41 |