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
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-01-17 12:34:52 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-01-17 12:34:52 +0300
commit02e78231f9a736f1ab92a24befe6bd39bdcb4f4b (patch)
treee434e042cde9d4eb018bf6c841fd303ea8c2514e /apps
parente20548731fc06b918faacb8cd7f401a149e907fa (diff)
Fix Types namespace for version 20
Use Doctrine\DBAL\Types\Types instead of OCP\DB\Types Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/Migration/Version1130Date20211102154716.php2
-rw-r--r--apps/user_ldap/lib/Migration/Version1130Date20220110154718.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php b/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
index 8c92bf5c7bd..0c1dcee0a35 100644
--- a/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
+++ b/apps/user_ldap/lib/Migration/Version1130Date20211102154716.php
@@ -27,10 +27,10 @@ declare(strict_types=1);
namespace OCA\User_LDAP\Migration;
use Closure;
+use Doctrine\DBAL\Types\Types;
use OCP\DB\Exception;
use OCP\DB\ISchemaWrapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
-use OCP\DB\Types;
use OCP\IDBConnection;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
diff --git a/apps/user_ldap/lib/Migration/Version1130Date20220110154718.php b/apps/user_ldap/lib/Migration/Version1130Date20220110154718.php
index 5f146ab06a5..b585b3a6b17 100644
--- a/apps/user_ldap/lib/Migration/Version1130Date20220110154718.php
+++ b/apps/user_ldap/lib/Migration/Version1130Date20220110154718.php
@@ -27,8 +27,8 @@ declare(strict_types=1);
namespace OCA\User_LDAP\Migration;
use Closure;
+use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
-use OCP\DB\Types;
use OCP\Migration\IOutput;
class Version1130Date20220110154718 extends GroupMappingMigration {