Skip to content

Commit

Permalink
Coding Standards: Remove redundant semicolons after closing curly bra…
Browse files Browse the repository at this point in the history
…ckets.

Props jrf.
See #53359.

git-svn-id: https://develop.svn.wordpress.org/trunk@51552 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Aug 5, 2021
1 parent b2be104 commit 2bfd2c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/wp-includes/formatting.php
Expand Up @@ -3265,7 +3265,7 @@ function wp_init_targeted_link_rel_filters() {

foreach ( $filters as $filter ) {
add_filter( $filter, 'wp_targeted_link_rel' );
};
}
}

/**
Expand All @@ -3288,7 +3288,7 @@ function wp_remove_targeted_link_rel_filters() {

foreach ( $filters as $filter ) {
remove_filter( $filter, 'wp_targeted_link_rel' );
};
}
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/includes/utils.php
Expand Up @@ -378,7 +378,7 @@ function gen_tests_array( $name, $array ) {
/**
* Use to create objects by yourself
*/
class MockClass {};
class MockClass {}

/**
* Drops all tables from the WordPress database
Expand Down

0 comments on commit 2bfd2c5

Please sign in to comment.