From fd703f568dd95d9bc59e2648aa0b782f6b0909e5 Mon Sep 17 00:00:00 2001 From: Nathaniel Hammond Date: Mon, 23 Sep 2024 14:34:30 +0100 Subject: [PATCH] fix cs --- .../m240923_132625_remove_orphaned_variants_sites.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/migrations/m240923_132625_remove_orphaned_variants_sites.php b/src/migrations/m240923_132625_remove_orphaned_variants_sites.php index 0cf191af74..ce7bac534d 100644 --- a/src/migrations/m240923_132625_remove_orphaned_variants_sites.php +++ b/src/migrations/m240923_132625_remove_orphaned_variants_sites.php @@ -29,7 +29,7 @@ public function safeUp(): bool ); // Find all existing combinations of variant and site IDs - $allVariantsSites = (new Query) + $allVariantsSites = (new Query()) ->select(['es.id', 'elementId', 'siteId', 'primaryOwnerId']) ->from('{{%elements_sites}}' . ' es') ->innerJoin('{{%commerce_variants}}' . ' v', '[[es.elementId]] = [[v.id]]')