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