PHPDoc
This commit is contained in:
parent
83cb382b3f
commit
f20844ac89
|
@ -23,8 +23,6 @@
|
||||||
|
|
||||||
namespace OC\Encryption;
|
namespace OC\Encryption;
|
||||||
|
|
||||||
use OC\Encryption\Util;
|
|
||||||
|
|
||||||
class File implements \OCP\Encryption\IFile {
|
class File implements \OCP\Encryption\IFile {
|
||||||
|
|
||||||
/** @var Util */
|
/** @var Util */
|
||||||
|
@ -38,7 +36,7 @@ class File implements \OCP\Encryption\IFile {
|
||||||
/**
|
/**
|
||||||
* get list of users with access to the file
|
* get list of users with access to the file
|
||||||
*
|
*
|
||||||
* @param $path to the file
|
* @param string $path to the file
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getAccessList($path) {
|
public function getAccessList($path) {
|
||||||
|
@ -78,4 +76,4 @@ class File implements \OCP\Encryption\IFile {
|
||||||
return array('users' => $uniqueUserIds, 'public' => $public);
|
return array('users' => $uniqueUserIds, 'public' => $public);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,9 +28,9 @@ interface IFile {
|
||||||
/**
|
/**
|
||||||
* get list of users with access to the file
|
* get list of users with access to the file
|
||||||
*
|
*
|
||||||
* @param $path to the file
|
* @param string $path to the file
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getAccessList($path);
|
public function getAccessList($path);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue