1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

fix broken DatabaseConfigurationProvider interface

Summary: broken by rPd27e7c52b21865563bd56f37d5d422515aa40bb7

Test Plan: sigh

Reviewers: epriestley, edward, levijackson

Reviewed By: epriestley

CC: Korvin, aran

Differential Revision: https://secure.phabricator.com/D6816
This commit is contained in:
Wez Furlong 2013-08-26 17:04:56 -07:00
parent bb9be01d55
commit ec8162bcfc

View file

@ -13,6 +13,7 @@ interface DatabaseConfigurationProvider {
public function getUser();
public function getPassword();
public function getHost();
public function getPort();
public function getDatabase();
}