| Total Complexity | 2 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 14 | final class OrderIndexAction | ||
| 15 | { | ||
| 16 | /** @var ViewHandlerInterface */ | ||
| 17 | private $viewHandler; | ||
| 18 | |||
| 19 | /** @var OrderViewRepositoryInterface */ | ||
| 20 | private $orderViewRepository; | ||
| 21 | |||
| 22 | public function __construct( | ||
| 23 | ViewHandlerInterface $viewHandler, | ||
| 24 | OrderViewRepositoryInterface $orderViewRepository | ||
| 25 |     ) { | ||
| 26 | $this->viewHandler = $viewHandler; | ||
| 27 | $this->orderViewRepository = $orderViewRepository; | ||
| 28 | } | ||
| 29 | |||
| 30 | public function __invoke(Request $request): Response | ||
| 40 | ) | ||
| 41 | ); | ||
| 44 |