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