diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-08 11:47:55 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-08 11:47:55 +0100 |
commit | b330d07b51a983dc563a91244a3c83e691c9e97d (patch) | |
tree | 1142ec91b86d5da36e568ffcb4a25f5fd55b01fe /lib/public/files.php | |
parent | 81031984a6714feffc8b1a8e523988ab83f56515 (diff) | |
download | nextcloud-server-b330d07b51a983dc563a91244a3c83e691c9e97d.tar.gz nextcloud-server-b330d07b51a983dc563a91244a3c83e691c9e97d.zip |
Fix more documentation failes
Issue #7111
Diffstat (limited to 'lib/public/files.php')
-rw-r--r-- | lib/public/files.php | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lib/public/files.php b/lib/public/files.php index bc8fe2b7997..75c52b88fc7 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -37,7 +37,7 @@ namespace OCP; class Files { /** * Recusive deletion of folders - * @param string path to the folder + * @param string $path to the folder * @return bool */ static function rmdirr( $dir ) { @@ -46,7 +46,7 @@ class Files { /** * Get the mimetype form a local file - * @param string path + * @param string $path * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead */ @@ -56,7 +56,7 @@ class Files { /** * Search for files by mimetype - * @param string mimetype + * @param string $mimetype * @return array */ static public function searchByMime( $mimetype ) { @@ -65,8 +65,8 @@ class Files { /** * Copy the contents of one stream to another - * @param resource source - * @param resource target + * @param resource $source + * @param resource $target * @return int the number of bytes copied */ public static function streamCopy( $source, $target ) { @@ -76,7 +76,7 @@ class Files { /** * Create a temporary file with an unique filename - * @param string postfix + * @param string $postfix * @return string * * temporary files are automatically cleaned up after the script is finished @@ -97,8 +97,8 @@ class Files { /** * Adds a suffix to the name in case the file exists - * @param string path - * @param string filename + * @param string $path + * @param string $filename * @return string */ public static function buildNotExistingFileName( $path, $filename ) { @@ -108,7 +108,6 @@ class Files { /** * Gets the Storage for an app - creates the needed folder if they are not * existant - * @param string appid * @param string $app * @return \OC\Files\View */ |