these functions should be static

This commit is contained in:
Robin Appelman 2012-12-15 02:22:09 +01:00
parent 946d58eaa8
commit c6a5ce54a7
1 changed files with 2 additions and 2 deletions

View File

@ -28,11 +28,11 @@
class OC_Files {
static $tmpFiles = array();
public function getFileInfo($path){
static public function getFileInfo($path){
return \OC\Files\Filesystem::getFileInfo($path);
}
public function getDirectoryContent($path){
static public function getDirectoryContent($path){
return \OC\Files\Filesystem::getDirectoryContent($path);
}