2019-11-03 18:23:06 +00:00
|
|
|
<?php
|
|
|
|
interface InterfacePostgreSQL {
|
|
|
|
const PG_SERVER = 'localhost';
|
|
|
|
const PG_PORT = '5432';
|
2021-03-19 14:06:12 +00:00
|
|
|
const PG_DBNAME = 'aiibi';
|
|
|
|
const PG_USER = 'web';
|
|
|
|
const PG_PASSWORD = 'web';
|
2019-11-03 18:23:06 +00:00
|
|
|
|
2020-11-27 07:44:04 +00:00
|
|
|
public static function databaseConnect();
|
2019-11-03 18:23:06 +00:00
|
|
|
}
|