Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Oct 18, 2024
1 parent f5179d7 commit b1bbc17
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions tests/Support/DbHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b1bbc17

Please sign in to comment.