wefra/modules/InterfacePostgreSQL.php
2020-11-27 14:10:57 +01:00

11 lines
235 B
PHP

<?php
interface InterfacePostgreSQL {
const PG_SERVER = 'localhost';
const PG_PORT = '5432';
const PG_DBNAME = 'wefra';
const PG_USER = 'odoo11';
const PG_PASSWORD = 'odoo11';
public static function databaseConnect();
}