13 lines
175 B
PHP
Executable File
13 lines
175 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App;
|
|
|
|
class Config
|
|
{
|
|
public function __construct(
|
|
public array $db,
|
|
public bool $dbEnabled = true
|
|
) {
|
|
}
|
|
} |