1: | <?php declare(strict_types = 1); |
2: | |
3: | namespace ApiGen\Renderer\Latte\Template; |
4: | |
5: | use ApiGen\Index\Index; |
6: | |
7: | |
8: | class TreeTemplate |
9: | { |
10: | public function __construct( |
11: | public Index $index, |
12: | public ConfigParameters $config, |
13: | public LayoutParameters $layout, |
14: | ) { |
15: | } |
16: | } |
17: | |