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:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-11-25 16:07:00 +0300
committerGitHub <noreply@github.com>2019-11-25 16:07:00 +0300
commitc7d5b8fc493520ab40076ddade3632152dbfef00 (patch)
tree4de0070d04b69b5ba6ef478b241359260aa57113 /core/Command/Db/ConvertType.php
parent20ec763337428f3a0e7c9e34e0246c1f5fb3a838 (diff)
parent68748d4f85dd23238aaafb787b1c341f0f2f0419 (diff)
Merge pull request #18079 from nextcloud/fixes/phpcs
Some php-cs fixes
Diffstat (limited to 'core/Command/Db/ConvertType.php')
-rw-r--r--core/Command/Db/ConvertType.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php
index 631972150eb..d4a4d406eea 100644
--- a/core/Command/Db/ConvertType.php
+++ b/core/Command/Db/ConvertType.php
@@ -33,11 +33,11 @@ namespace OC\Core\Command\Db;
use Doctrine\DBAL\DBALException;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Types\Type;
-use OC\DB\MigrationService;
-use OCP\DB\QueryBuilder\IQueryBuilder;
-use \OCP\IConfig;
use OC\DB\Connection;
use OC\DB\ConnectionFactory;
+use OC\DB\MigrationService;
+use OCP\DB\QueryBuilder\IQueryBuilder;
+use OCP\IConfig;
use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface;
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
use Symfony\Component\Console\Command\Command;