Skip to content

Commit 6c124fa

Browse files
committed
Fix: Remove trailing whitespace in boot.php to pass CS check
1 parent 3f6d2c4 commit 6c124fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • integrations/plugin-compatibility

integrations/plugin-compatibility/boot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function wp_sqlite_integration_plugin_compat( $query ) {
2222
}
2323

2424
// 1. Heavy cleaning of unsupported MySQL locking clauses.
25-
// SQLite doesn't support FOR UPDATE, SKIP LOCKED, or NOWAIT anywhere.
25+
// SQLite doesn't support FOR UPDATE, SKIP LOCKED, or NOWAIT anywhere.
2626
// We strip these globally (case-insensitive, multi-line) to prevent syntax errors in subqueries.
2727
if ( stripos( $query, 'FOR UPDATE' ) !== false ) {
2828
$query = preg_replace( '/\s+FOR\s+UPDATE(?:\s+(?:SKIP\s+LOCKED|NOWAIT))?\b/is', '', $query );

0 commit comments

Comments
 (0)