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
1 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,14 @@ namespace OC;
* fixes cyclic DI: AllConfig needs AppConfig needs Database needs AllConfig * fixes cyclic DI: AllConfig needs AppConfig needs Database needs AllConfig
*/ */
class SystemConfig { 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 * Sets a new system wide value
* *