wefra/modules/InterfacePostgreSQL.php

11 lines
229 B
PHP
Raw Permalink Normal View History

<?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';
public static function databaseConnect();
}