diff options
author | Robin Appelman <robin@icewind.nl> | 2025-05-15 17:59:10 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2025-05-16 10:41:27 +0200 |
commit | 780766b63c76a4155f60b7370bec65dfc1301e6d (patch) | |
tree | 15495d2ed4b21704708c428f9bc93bbee169e636 /apps/files/lib/Command/Object | |
parent | 4ff14790af9db96c9534e03b128d1038f4efcee0 (diff) | |
download | nextcloud-server-backport/51603/stable31.tar.gz nextcloud-server-backport/51603/stable31.zip |
fix: keep IObjectStoreMetaData in private namespace for backportsbackport/51603/stable31
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files/lib/Command/Object')
-rw-r--r-- | apps/files/lib/Command/Object/Info.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Command/Object/ListObject.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Command/Object/Orphans.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/lib/Command/Object/Info.php b/apps/files/lib/Command/Object/Info.php index 6748de37cfe..383ffa9d0ef 100644 --- a/apps/files/lib/Command/Object/Info.php +++ b/apps/files/lib/Command/Object/Info.php @@ -9,8 +9,8 @@ declare(strict_types=1); namespace OCA\Files\Command\Object; use OC\Core\Command\Base; +use OC\Files\ObjectStore\IObjectStoreMetaData; use OCP\Files\IMimeTypeDetector; -use OCP\Files\ObjectStore\IObjectStoreMetaData; use OCP\Util; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; diff --git a/apps/files/lib/Command/Object/ListObject.php b/apps/files/lib/Command/Object/ListObject.php index 5d30232e09f..b377f7ae3c1 100644 --- a/apps/files/lib/Command/Object/ListObject.php +++ b/apps/files/lib/Command/Object/ListObject.php @@ -9,7 +9,7 @@ declare(strict_types=1); namespace OCA\Files\Command\Object; use OC\Core\Command\Base; -use OCP\Files\ObjectStore\IObjectStoreMetaData; +use OC\Files\ObjectStore\IObjectStoreMetaData; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; diff --git a/apps/files/lib/Command/Object/Orphans.php b/apps/files/lib/Command/Object/Orphans.php index f7132540fc8..14878fde925 100644 --- a/apps/files/lib/Command/Object/Orphans.php +++ b/apps/files/lib/Command/Object/Orphans.php @@ -9,8 +9,8 @@ declare(strict_types=1); namespace OCA\Files\Command\Object; use OC\Core\Command\Base; +use OC\Files\ObjectStore\IObjectStoreMetaData; use OCP\DB\QueryBuilder\IQueryBuilder; -use OCP\Files\ObjectStore\IObjectStoreMetaData; use OCP\IDBConnection; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; |