14 lines
185 B
Plaintext
14 lines
185 B
Plaintext
<?php
|
|
namespace App;
|
|
|
|
class Config
|
|
{
|
|
const
|
|
DB_HOST = 'mariadb',
|
|
DB_DB = 'lepisi',
|
|
DB_UNAME = 'root',
|
|
DB_PWD = 'root',
|
|
|
|
LOG_ERRORS = false;
|
|
}
|