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