saufen/src/Settings.php
2025-05-31 21:43:13 +02:00

14 lines
266 B
PHP

<?php
declare(strict_types=1);
namespace App;
final readonly class Settings
{
public function __construct(
public bool $isTestMode = false,
public bool $isDevMode = false,
public string $cacheDir = __DIR__ . '/../var/cache'
) {}
}