mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-08 16:41:44 +01:00
There is no need to use the final
modifier inside a final
class. Everything in it is final
by default.
See #30799. Built from https://develop.svn.wordpress.org/trunk@31085 git-svn-id: http://core.svn.wordpress.org/trunk@31066 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
905f35f289
commit
55fdfb529a
@ -894,7 +894,7 @@ final class WP_Customize_Manager {
|
|||||||
* @param {WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control} $b Object B.
|
* @param {WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control} $b Object B.
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
protected final function _cmp_priority( $a, $b ) {
|
protected function _cmp_priority( $a, $b ) {
|
||||||
if ( $a->priority === $b->priority ) {
|
if ( $a->priority === $b->priority ) {
|
||||||
return $a->instance_number - $a->instance_number;
|
return $a->instance_number - $a->instance_number;
|
||||||
} else {
|
} else {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31083';
|
$wp_version = '4.2-alpha-31085';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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