Improve phpdoc
This commit is contained in:
parent
fe78d963d9
commit
0c2585f3ac
2 changed files with 10 additions and 1 deletions
|
@ -400,6 +400,13 @@ class Shared_Cache extends Cache {
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* get the path of a file on this storage by it's id
|
||||
*
|
||||
* @param int $id
|
||||
* @param string $pathEnd (optional) used internally for recursive calls
|
||||
* @return string | null
|
||||
*/
|
||||
public function getPathById($id, $pathEnd = '') {
|
||||
// direct shares are easy
|
||||
if ($path = $this->getShareById($id)) {
|
||||
|
|
4
lib/private/files/cache/cache.php
vendored
4
lib/private/files/cache/cache.php
vendored
|
@ -594,7 +594,7 @@ class Cache {
|
|||
}
|
||||
|
||||
/**
|
||||
* get the storage id of the storage for a file and the internal path of the file
|
||||
* get the path of a file on this storage by it's id
|
||||
*
|
||||
* @param int $id
|
||||
* @return string | null
|
||||
|
@ -611,6 +611,8 @@ class Cache {
|
|||
|
||||
/**
|
||||
* get the storage id of the storage for a file and the internal path of the file
|
||||
* unlike getPathById this does not limit the search to files on this storage and
|
||||
* instead does a global search in the cache table
|
||||
*
|
||||
* @param int $id
|
||||
* @return array, first element holding the storage id, second the path
|
||||
|
|
Loading…
Reference in a new issue