Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2022-03-02 21:24:26 +0300
committerRobin Appelman <robin@icewind.nl>2022-03-04 18:30:06 +0300
commit6c1d051ecd8bb4d76761da2c25d274e703a2fb97 (patch)
treeb6cad6dd3aa10a7cf9b21458df9d3362c8a1340e /lib/private/Files
parent22875bf367b69db4a76daed1a057407e7fbff2a6 (diff)
add template annotations to CappedMemoryCache
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files')
-rw-r--r--lib/private/Files/Mount/Manager.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/private/Files/Mount/Manager.php b/lib/private/Files/Mount/Manager.php
index b1506b21864..fc78d71adb4 100644
--- a/lib/private/Files/Mount/Manager.php
+++ b/lib/private/Files/Mount/Manager.php
@@ -42,7 +42,9 @@ use OCP\IUserManager;
class Manager implements IMountManager {
/** @var MountPoint[] */
private array $mounts = [];
+ /** @var CappedMemoryCache<IMountPoint> */
private CappedMemoryCache $pathCache;
+ /** @var CappedMemoryCache<IMountPoint[]> */
private CappedMemoryCache $inPathCache;
private SetupManager $setupManager;
@@ -94,9 +96,9 @@ class Manager implements IMountManager {
* Find the mount for $path
*
* @param string $path
- * @return MountPoint
+ * @return IMountPoint
*/
- public function find(string $path): MountPoint {
+ public function find(string $path): IMountPoint {
$this->setupManager->setupForPath($path);
$path = Filesystem::normalizePath($path);
@@ -127,7 +129,7 @@ class Manager implements IMountManager {
* Find all mounts in $path
*
* @param string $path
- * @return MountPoint[]
+ * @return IMountPoint[]
*/
public function findIn(string $path): array {
$this->setupManager->setupForPath($path);
@@ -160,7 +162,7 @@ class Manager implements IMountManager {
* Find mounts by storage id
*
* @param string $id
- * @return MountPoint[]
+ * @return IMountPoint[]
*/
public function findByStorageId(string $id): array {
\OC_Util::setupFS();
@@ -177,7 +179,7 @@ class Manager implements IMountManager {
}
/**
- * @return MountPoint[]
+ * @return IMountPoint[]
*/
public function getAll(): array {
return $this->mounts;
@@ -187,7 +189,7 @@ class Manager implements IMountManager {
* Find mounts by numeric storage id
*
* @param int $id
- * @return MountPoint[]
+ * @return IMountPoint[]
*/
public function findByNumericId(int $id): array {
$storageId = \OC\Files\Cache\Storage::getStorageId($id);