| 1: | <?php declare(strict_types = 1); |
| 2: | |
| 3: | namespace ApiGen\Renderer\Latte\Template; |
| 4: | |
| 5: | use ApiGen\Index\NamespaceIndex; |
| 6: | use ApiGen\Info\ElementInfo; |
| 7: | |
| 8: | |
| 9: | class LayoutParameters |
| 10: | { |
| 11: | public function __construct( |
| 12: | public string $activePage, |
| 13: | public ?NamespaceIndex $activeNamespace = null, |
| 14: | public ?ElementInfo $activeElement = null, |
| 15: | public bool $noindex = false, |
| 16: | ) { |
| 17: | } |
| 18: | } |
| 19: |