Add missing tunnel on new class

This commit is contained in:
Joas Schilling 2015-04-30 15:48:31 +02:00
parent 6ed8ba0ce9
commit 6fb3a8d5f5

View File

@ -28,6 +28,14 @@ namespace OC;
* fixes cyclic DI: AllConfig needs AppConfig needs Database needs AllConfig
*/
class SystemConfig {
/**
* Lists all available config keys
* @return array an array of key names
*/
public function getKeys() {
return \OC_Config::getKeys();
}
/**
* Sets a new system wide value
*