Skip to content

Commit c622c4b

Browse files
committed
Coding Standards: Apply some minor coding standards adjustments.
Follow up to [50977], [50987], and [50995]. See #41683, #53156, #53175. git-svn-id: https://develop.svn.wordpress.org/trunk@51007 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 333f10b commit c622c4b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/wp-includes/class-wp-theme-json.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ private static function get_style_nodes( $theme_json, $selectors = array() ) {
10181018
* @param WP_Theme_JSON $incoming Data to merge.
10191019
*/
10201020
public function merge( $incoming, $update_or_remove = 'remove' ) {
1021-
$incoming_data = $incoming->get_raw_data();
1021+
$incoming_data = $incoming->get_raw_data();
10221022
$existing_data = $this->theme_json;
10231023

10241024
// The array_replace_recursive algorithm merges at the leaf level.

src/wp-includes/kses.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
'align' => true,
253253
'value' => true,
254254
),
255-
'main' => array(
255+
'main' => array(
256256
'align' => true,
257257
'dir' => true,
258258
'lang' => true,

src/wp-includes/widgets/class-wp-widget-rss.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class WP_Widget_RSS extends WP_Widget {
2222
* @since 2.8.0
2323
*/
2424
public function __construct() {
25-
$widget_ops = array(
25+
$widget_ops = array(
2626
'description' => __( 'Entries from any RSS or Atom feed.' ),
2727
'customize_selective_refresh' => true,
2828
'show_instance_in_rest' => true,

0 commit comments

Comments
 (0)