Coding Standards: Fix several minor coding standards issues.

These are made by running `composer format`.

Follow up to [50124], [50129], [50143].

See #49961, #52192, #34281.
Built from https://develop.svn.wordpress.org/trunk@50152


git-svn-id: http://core.svn.wordpress.org/trunk@49831 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2021-02-02 18:04:03 +00:00
parent 2cb2651c00
commit 230c1c5c8a
5 changed files with 10 additions and 10 deletions

View File

@ -544,7 +544,7 @@ function wp_clear_scheduled_hook( $hook, $args = array(), $wp_error = false ) {
// Previously, this function took the arguments as discrete vars rather than an array like the rest of the API. // Previously, this function took the arguments as discrete vars rather than an array like the rest of the API.
if ( ! is_array( $args ) ) { if ( ! is_array( $args ) ) {
_deprecated_argument( __FUNCTION__, '3.0.0', __( 'This argument has changed to an array to match the behavior of the other cron functions.' ) ); _deprecated_argument( __FUNCTION__, '3.0.0', __( 'This argument has changed to an array to match the behavior of the other cron functions.' ) );
$args = array_slice( func_get_args(), 1 ); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection $args = array_slice( func_get_args(), 1 ); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
$wp_error = false; $wp_error = false;
} }
@ -1182,7 +1182,7 @@ function _get_cron_array() {
*/ */
function _set_cron_array( $cron, $wp_error = false ) { function _set_cron_array( $cron, $wp_error = false ) {
$cron['version'] = 2; $cron['version'] = 2;
$result = update_option( 'cron', $cron ); $result = update_option( 'cron', $cron );
if ( $wp_error && ! $result ) { if ( $wp_error && ! $result ) {
return new WP_Error( return new WP_Error(

View File

@ -1335,8 +1335,8 @@ class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller {
), ),
'oneOf' => array( 'oneOf' => array(
array( array(
'title' => __( 'Rotation' ), 'title' => __( 'Rotation' ),
'properties' => array( 'properties' => array(
'type' => array( 'type' => array(
'description' => __( 'Rotation type.' ), 'description' => __( 'Rotation type.' ),
'type' => 'string', 'type' => 'string',
@ -1358,8 +1358,8 @@ class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller {
), ),
), ),
array( array(
'title' => __( 'Crop' ), 'title' => __( 'Crop' ),
'properties' => array( 'properties' => array(
'type' => array( 'type' => array(
'description' => __( 'Crop type.' ), 'description' => __( 'Crop type.' ),
'type' => 'string', 'type' => 'string',

View File

@ -1083,8 +1083,8 @@ function wp_default_scripts( $scripts ) {
'user-profile', 'user-profile',
'userProfileL10n', 'userProfileL10n',
array( array(
'user_id' => $user_id, 'user_id' => $user_id,
'nonce' => wp_create_nonce( 'reset-password-for-' . $user_id ), 'nonce' => wp_create_nonce( 'reset-password-for-' . $user_id ),
) )
); );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.7-alpha-50151'; $wp_version = '5.7-alpha-50152';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.