From b1bbc17afd0d926ddfba7de4f89d8f33f2e37fea Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 18 Oct 2024 07:00:29 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Support/DbHelper.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/Support/DbHelper.php b/tests/Support/DbHelper.php index 7f9be9733..18970d50f 100644 --- a/tests/Support/DbHelper.php +++ b/tests/Support/DbHelper.php @@ -26,13 +26,14 @@ public static function changeSqlForOracleBatchInsert(string &$str): void } $str = str_replace( - ' VALUES (', - "\nSELECT ", - str_replace( - '), (', - " FROM DUAL UNION ALL\nSELECT ", - substr($str, 0, -1)) - ) . ' FROM DUAL'; + ' VALUES (', + "\nSELECT ", + str_replace( + '), (', + " FROM DUAL UNION ALL\nSELECT ", + substr($str, 0, -1) + ) + ) . ' FROM DUAL'; } public static function getPsrCache(): CacheInterface