1: <?php declare(strict_types = 1);
2:
3: namespace ApiGen\Renderer\Latte\Template;
4:
5:
6: class ConfigParameters
7: {
8: public function __construct(
9: public string $title,
10: public string $version,
11: ) {
12: }
13: }
14: