Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (6 years ago)
Author:
pento
Message:

General: Fix some precision alignment formatting warnings.

The WPCS WordPress.WhiteSpace.PrecisionAlignment rule throws warnings for a bunch of code that will likely cause issues for wpcbf. Fixing these manually beforehand gives us better auto-fixed results later.

See #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/user.php

    r41686 r42228  
    201201
    202202        /**
    203           * Fires after a new user has been created.
    204           *
    205           * @since 4.4.0
    206           *
    207           * @param int    $user_id ID of the newly created user.
    208           * @param string $notify  Type of notification that should happen. See wp_send_new_user_notifications()
    209           *                        for more information on possible values.
    210           */
     203         * Fires after a new user has been created.
     204         *
     205         * @since 4.4.0
     206         *
     207         * @param int    $user_id ID of the newly created user.
     208         * @param string $notify  Type of notification that should happen. See wp_send_new_user_notifications()
     209         *                        for more information on possible values.
     210         */
    211211        do_action( 'edit_user_created_user', $user_id, $notify );
    212212    }
Note: See TracChangeset for help on using the changeset viewer.