From a80ecd0cb627df5034c608e7313dd16c587791e1 Mon Sep 17 00:00:00 2001 From: Prem Palanisamy Date: Mon, 30 Mar 2026 17:24:58 +0100 Subject: [PATCH] fix: alphabetize imports, update phpstan baseline count for migrations tests --- app/controllers/api/migrations.php | 2 +- phpstan-baseline.neon | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/api/migrations.php b/app/controllers/api/migrations.php index 7bc5e60b88..642fa6fe68 100644 --- a/app/controllers/api/migrations.php +++ b/app/controllers/api/migrations.php @@ -28,8 +28,8 @@ use Utopia\Http\Http; use Utopia\Migration\Resource; use Utopia\Migration\Sources\Appwrite; use Utopia\Migration\Sources\CSV; -use Utopia\Migration\Sources\JSON; use Utopia\Migration\Sources\Firebase; +use Utopia\Migration\Sources\JSON; use Utopia\Migration\Sources\NHost; use Utopia\Migration\Sources\Supabase; use Utopia\Migration\Transfer; diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 37e2579644..24fc4ae6b1 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -1537,13 +1537,13 @@ parameters: - message: '#^Anonymous function has an unused use \$databaseId\.$#' identifier: closure.unusedUse - count: 5 + count: 6 path: tests/e2e/Services/Migrations/MigrationsConsoleClientTest.php - message: '#^Anonymous function has an unused use \$tableId\.$#' identifier: closure.unusedUse - count: 5 + count: 6 path: tests/e2e/Services/Migrations/MigrationsConsoleClientTest.php -