11 lines
235 B
PHP
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();
|
|
}
|