mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Coding Standards: Fix instances of WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
.
See #46732. Built from https://develop.svn.wordpress.org/trunk@45612 git-svn-id: http://core.svn.wordpress.org/trunk@45423 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
abcbee954f
commit
4be25f3d06
@ -1209,10 +1209,12 @@ function verify_file_signature( $filename, $signatures, $filename_for_errors = f
|
|||||||
// Allow for an old version of Sodium_Compat being loaded before the bundled WordPress one.
|
// Allow for an old version of Sodium_Compat being loaded before the bundled WordPress one.
|
||||||
if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) {
|
if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) {
|
||||||
// Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, as that's what WordPress utilises during signing verifications.
|
// Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, as that's what WordPress utilises during signing verifications.
|
||||||
|
// phpcs:disable WordPress.NamingConventions.ValidVariableName
|
||||||
$old_fastMult = ParagonIE_Sodium_Compat::$fastMult;
|
$old_fastMult = ParagonIE_Sodium_Compat::$fastMult;
|
||||||
ParagonIE_Sodium_Compat::$fastMult = true;
|
ParagonIE_Sodium_Compat::$fastMult = true;
|
||||||
$sodium_compat_is_fast = ParagonIE_Sodium_Compat::runtime_speed_test( 100, 10 );
|
$sodium_compat_is_fast = ParagonIE_Sodium_Compat::runtime_speed_test( 100, 10 );
|
||||||
ParagonIE_Sodium_Compat::$fastMult = $old_fastMult;
|
ParagonIE_Sodium_Compat::$fastMult = $old_fastMult;
|
||||||
|
// phpcs:enable
|
||||||
}
|
}
|
||||||
|
|
||||||
// This cannot be performed in a reasonable amount of time
|
// This cannot be performed in a reasonable amount of time
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.3-alpha-45611';
|
$wp_version = '5.3-alpha-45612';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user