Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | final class ChiefNavigation |
||
12 | { |
||
13 | /** @var Container */ |
||
14 | private $container; |
||
15 | |||
16 | /** @var Registry */ |
||
17 | private Registry $registry; |
||
18 | |||
19 | public function __construct(Registry $registry, Container $container) |
||
20 | { |
||
21 | $this->container = $container; |
||
22 | $this->registry = $registry; |
||
23 | } |
||
24 | |||
25 | public function handle($request, Closure $next) |
||
34 | } |
||
35 | } |
||
36 |