summaryrefslogtreecommitdiffstats
path: root/lib/private/files/cache/cache.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-02-10 01:14:00 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-02-10 01:14:00 +0100
commit1bb6de7c1b7d25c67bafaa3d6a37d0e0cec0b169 (patch)
tree360da574039aa66cf91c6731a6b80e1da7afffc3 /lib/private/files/cache/cache.php
parent4a99849c6c444a656c17b0e1f82dead6fb60cc5c (diff)
parent2b99fc76eced32c740a9f87d48354e0ffdc57f45 (diff)
downloadnextcloud-server-1bb6de7c1b7d25c67bafaa3d6a37d0e0cec0b169.tar.gz
nextcloud-server-1bb6de7c1b7d25c67bafaa3d6a37d0e0cec0b169.zip
Merge pull request #13425 from owncloud/phpdoc_cleanup
Cleanup of PHPDoc return types
Diffstat (limited to 'lib/private/files/cache/cache.php')
-rw-r--r--lib/private/files/cache/cache.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php
index cad4c8a40b9..06a884072e0 100644
--- a/lib/private/files/cache/cache.php
+++ b/lib/private/files/cache/cache.php
@@ -436,7 +436,7 @@ class Cache {
/**
* @param string $file
*
- * @return int, Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE
+ * @return int Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE
*/
public function getStatus($file) {
// normalize file
@@ -689,7 +689,7 @@ class Cache {
* instead does a global search in the cache table
*
* @param int $id
- * @return array, first element holding the storage id, second the path
+ * @return array first element holding the storage id, second the path
*/
static public function getById($id) {
$sql = 'SELECT `storage`, `path` FROM `*PREFIX*filecache` WHERE `fileid` = ?';