Coding Standards: Fix instances of Generic.WhiteSpace.ArbitraryParenthesesSpacing.FoundEmpty.

See #49542.

git-svn-id: https://develop.svn.wordpress.org/trunk@47855 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-05-26 09:35:34 +00:00
parent 6ec9c9c446
commit 2c75752c88
28 changed files with 70 additions and 68 deletions

View File

@@ -123,7 +123,7 @@ if ( isset( $_GET['action'] ) ) {
</div>
<?php
require_once ABSPATH . 'wp-admin/admin-footer.php';
exit();
exit;
} elseif ( array_key_exists( $_GET['action'], $manage_actions ) ) {
$action = $_GET['action'];
check_admin_referer( $action . '_' . $id );
@@ -210,7 +210,7 @@ if ( isset( $_GET['action'] ) ) {
</div>
<?php
require_once ABSPATH . 'wp-admin/admin-footer.php';
exit();
exit;
break;
case 'spam':
@@ -232,7 +232,7 @@ if ( isset( $_GET['action'] ) ) {
$redirect_to = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
wp_safe_redirect( $redirect_to );
exit();
exit;
}
} else {
// Process query defined by WP_MS_Site_List_Table::extra_table_nav().
@@ -295,7 +295,7 @@ if ( isset( $_GET['action'] ) ) {
if ( ! empty( $updated_action ) ) {
wp_safe_redirect( add_query_arg( array( 'updated' => $updated_action ), wp_get_referer() ) );
exit();
exit;
}
}