mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
13 lines
292 B
PHP
13 lines
292 B
PHP
<?php
|
|
|
|
namespace SYSTEM\DB;
|
|
|
|
abstract class DBInfo {
|
|
public $m_database = null;
|
|
public $m_user = null;
|
|
public $m_password = null;
|
|
public $m_host = null;
|
|
public $m_port = null;
|
|
|
|
abstract public function __construct($database , $user , $password, $host, $port = null);
|
|
} |