diff options
author | Thomas Citharel <tcit@tcit.fr> | 2023-10-20 09:08:08 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2024-02-02 14:59:21 +0100 |
commit | 30798eb6c238a0090fd42d2b44644f4fc24d8c8d (patch) | |
tree | ffdc39e7740cb77b057430469a38001afa7dcdeb /lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php | |
parent | 3be3dbdb3b4d707332a1c7edc1db378bc8e90375 (diff) | |
download | nextcloud-server-30798eb6c238a0090fd42d2b44644f4fc24d8c8d.tar.gz nextcloud-server-30798eb6c238a0090fd42d2b44644f4fc24d8c8d.zip |
refactor(objectstorage): cleanup types
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php')
-rw-r--r-- | lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php b/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php index 2f6db935236..2c473cb6da9 100644 --- a/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php @@ -26,9 +26,12 @@ declare(strict_types=1); namespace OC\Files\ObjectStore; class AppdataPreviewObjectStoreStorage extends ObjectStoreStorage { - /** @var string */ - private $internalId; + private string $internalId; + /** + * @param array $params + * @throws \Exception + */ public function __construct($params) { if (!isset($params['internal-id'])) { throw new \Exception('missing id in parameters'); @@ -37,7 +40,7 @@ class AppdataPreviewObjectStoreStorage extends ObjectStoreStorage { parent::__construct($params); } - public function getId() { + public function getId(): string { return 'object::appdata::preview:' . $this->internalId; } } |