Make WordPress Core

Changeset 45612


Ignore:
Timestamp:
07/09/2019 06:28:09 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix instances of WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase.

See #46732.

File:
1 edited

Legend:

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

    r45611 r45612  
    12101210        if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) {
    12111211            // Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, as that's what WordPress utilises during signing verifications.
     1212            // phpcs:disable WordPress.NamingConventions.ValidVariableName
    12121213            $old_fastMult                      = ParagonIE_Sodium_Compat::$fastMult;
    12131214            ParagonIE_Sodium_Compat::$fastMult = true;
    12141215            $sodium_compat_is_fast             = ParagonIE_Sodium_Compat::runtime_speed_test( 100, 10 );
    12151216            ParagonIE_Sodium_Compat::$fastMult = $old_fastMult;
     1217            // phpcs:enable
    12161218        }
    12171219
Note: See TracChangeset for help on using the changeset viewer.