From 5372e43f322fec058564240067b5766b4e7421a3 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sat, 2 Nov 2024 09:28:19 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Schema.php b/src/Schema.php index e74d5551..6fb9ab84 100644 --- a/src/Schema.php +++ b/src/Schema.php @@ -438,7 +438,7 @@ protected function findColumns(TableSchemaInterface $table): bool } if ($schemaName !== null) { - $whereSql .= " AND [t1].[table_schema] = :schema_name"; + $whereSql .= ' AND [t1].[table_schema] = :schema_name'; $whereParams[':schema_name'] = $schemaName; }