2019-11-03 18:23:06 +00:00
|
|
|
<?php
|
|
|
|
interface InterfacePostgreSQL {
|
|
|
|
const PG_SERVER = 'localhost';
|
|
|
|
const PG_PORT = '5432';
|
2020-11-27 13:10:57 +00:00
|
|
|
const PG_DBNAME = 'wefra';
|
2020-11-27 07:44:04 +00:00
|
|
|
const PG_USER = 'odoo11';
|
|
|
|
const PG_PASSWORD = 'odoo11';
|
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
|
|
|
}
|