no-framework-tutorial/implementation/14-middleware/src/Settings.php
2022-05-31 18:50:35 +02:00

15 lines
375 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework;
final class Settings
{
public function __construct(
public readonly string $environment,
public readonly string $dependenciesFile,
public readonly string $middlewaresFile,
public readonly string $templateDir,
public readonly string $templateExtension,
) {
}
}