diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 22:53:54 +0200 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-10-23 22:53:54 +0200 |
commit | e73b817a38a824b3119136ea110eda4be15b99d5 (patch) | |
tree | 2679aaf755b1488bf50cb073dbd990fe2761679b /lib/streamwrappers.php | |
parent | 36d0d7590134f5587ab09c67927c3187e8b5c790 (diff) | |
download | nextcloud-server-e73b817a38a824b3119136ea110eda4be15b99d5.tar.gz nextcloud-server-e73b817a38a824b3119136ea110eda4be15b99d5.zip |
Checkstyle: NoSpaceAfterComma
Diffstat (limited to 'lib/streamwrappers.php')
-rw-r--r-- | lib/streamwrappers.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/streamwrappers.php b/lib/streamwrappers.php index 1e5b19a11f0..63b795f4c4d 100644 --- a/lib/streamwrappers.php +++ b/lib/streamwrappers.php @@ -6,7 +6,7 @@ class OC_FakeDirStream{ private $index; public function dir_opendir($path,$options) { - $this->name=substr($path,strlen('fakedir://')); + $this->name=substr($path, strlen('fakedir://')); $this->index=0; if(!isset(self::$dirs[$this->name])) { self::$dirs[$this->name]=array(); @@ -223,7 +223,7 @@ class OC_CloseStreamWrapper{ private $source; private static $open=array(); public function stream_open($path, $mode, $options, &$opened_path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); $this->path=$path; $this->source=fopen($path,$mode); if(is_resource($this->source)) { @@ -279,7 +279,7 @@ class OC_CloseStreamWrapper{ } public function url_stat($path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); if(file_exists($path)) { return stat($path); }else{ @@ -295,7 +295,7 @@ class OC_CloseStreamWrapper{ } public function unlink($path) { - $path=substr($path,strlen('close://')); + $path=substr($path, strlen('close://')); return unlink($path); } } |