9 lines
250 B
PHP
9 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
class Config
|
||
|
{
|
||
|
public static string $database_host = "localhost";
|
||
|
public static string $database_name = "dominik_php_kanban";
|
||
|
public static string $database_user = "root";
|
||
|
public static string $database_password = "";
|
||
|
}
|