X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fprofiler%2FProfilerSectionOnly.php;h=504859d225bb480e8791c8bb86ab6bd5b7cc4c5a;hb=b4115ca9cf550c2e38dc0ef555f2f87d9d596453;hp=41260a83882cdd94866c32dca4bb2641e35e8842;hpb=b95ca29602793f39191c06cd6941e3f32ab1bbb8;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/profiler/ProfilerSectionOnly.php b/includes/profiler/ProfilerSectionOnly.php index 41260a8388..504859d225 100644 --- a/includes/profiler/ProfilerSectionOnly.php +++ b/includes/profiler/ProfilerSectionOnly.php @@ -22,7 +22,7 @@ * Profiler that only tracks explicit profiling sections * * @code - * $wgProfiler['class'] = 'ProfilerSectionOnly'; + * $wgProfiler['class'] = ProfilerSectionOnly::class; * $wgProfiler['output'] = 'text'; * $wgProfiler['visible'] = true; * @endcode @@ -73,10 +73,7 @@ class ProfilerSectionOnly extends Profiler { protected function getFunctionReport() { $data = $this->getFunctionStats(); usort( $data, function ( $a, $b ) { - if ( $a['real'] === $b['real'] ) { - return 0; - } - return ( $a['real'] > $b['real'] ) ? -1 : 1; // descending + return $b['real'] <=> $a['real']; // descending } ); $width = 140;