these functions should be static
This commit is contained in:
parent
946d58eaa8
commit
c6a5ce54a7
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue