Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class PanelLogsController |
||
11 | { |
||
12 | private DataResponseFactoryInterface $responseFactory; |
||
13 | |||
14 | /** |
||
15 | * PanelInfoController constructor. |
||
16 | */ |
||
17 | public function __construct( |
||
18 | DataResponseFactoryInterface $responseFactory |
||
19 | ) { |
||
20 | $this->responseFactory = $responseFactory; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return ResponseInterface |
||
25 | */ |
||
26 | public function view(): ResponseInterface |
||
29 | } |
||
30 | } |
||
31 |