From 43a091b58079a5e682b0bfc74e58b9d8e6494eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Jodas?= Date: Fri, 25 Oct 2024 13:47:25 +0200 Subject: [PATCH] fix phpcs --- src/MigrationChecker.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/MigrationChecker.php b/src/MigrationChecker.php index 0c1a5b6..2967e2c 100644 --- a/src/MigrationChecker.php +++ b/src/MigrationChecker.php @@ -29,10 +29,12 @@ public function postMigrationCheckStructure(Role $mainRoleWithGrants): void assert(count($warehouses) > 0); $useWarehouseSource = sprintf( - 'USE WAREHOUSE %s', Helper::quoteIdentifier($this->config->getSourceSnowflakeWarehouse()), + 'USE WAREHOUSE %s', + Helper::quoteIdentifier($this->config->getSourceSnowflakeWarehouse()), ); $useWarehouseDestination = sprintf( - 'USE WAREHOUSE %s', Helper::quoteIdentifier(current($warehouses)->getName()), + 'USE WAREHOUSE %s', + Helper::quoteIdentifier(current($warehouses)->getName()), ); $this->sourceConnection->query($useWarehouseSource);