wefra/modules/InterfacePostgreSQL.php

11 lines
226 B
PHP
Raw Normal View History

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