65c1b5fb75
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
19 lines
404 B
PHP
19 lines
404 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXC\Application;
|
|
|
|
final readonly class KernelOptions
|
|
{
|
|
public function __construct(
|
|
public ProjectPaths $paths,
|
|
public string $environment = 'prod',
|
|
public bool $debug = false,
|
|
) {
|
|
if ($this->environment === '') {
|
|
throw new \InvalidArgumentException('Kernel environment cannot be empty.');
|
|
}
|
|
}
|
|
}
|