Skip to content

Commit 0185911

Browse files
committed
Fix phpcs assignment alignment sniff
1 parent 3d99f00 commit 0185911

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/wp-includes/class-wp-script-modules.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,14 +402,14 @@ public function print_script_module_translations(): void {
402402
continue;
403403
}
404404

405-
$output = sprintf(
405+
$output = sprintf(
406406
'( %s )( %s, %s );',
407407
$set_locale_data_js_function,
408408
wp_json_encode( $domain, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
409409
$json_translations
410410
);
411-
$script_id = "wp-script-module-translation-data-{$id}";
412-
$output .= "\n//# sourceURL=" . rawurlencode( $script_id );
411+
$script_id = "wp-script-module-translation-data-{$id}";
412+
$output .= "\n//# sourceURL=" . rawurlencode( $script_id );
413413

414414
// Ensure wp-i18n is printed; the inline script below relies on wp.i18n.setLocaleData().
415415
if ( ! wp_script_is( 'wp-i18n', 'done' ) ) {

0 commit comments

Comments
 (0)