Make WordPress Core

Changeset 31085


Ignore:
Timestamp:
01/08/2015 06:09:59 AM (10 years ago)
Author:
wonderboymusic
Message:

There is no need to use the final modifier inside a final class. Everything in it is final by default.

See #30799.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r31077 r31085  
    895895     * @return int
    896896     */
    897     protected final function _cmp_priority( $a, $b ) {
     897    protected function _cmp_priority( $a, $b ) {
    898898        if ( $a->priority === $b->priority ) {
    899899            return $a->instance_number - $a->instance_number;
Note: See TracChangeset for help on using the changeset viewer.