diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2021-02-10 23:31:02 +0100 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2021-02-11 00:13:52 +0000 |
commit | 8de3b7d324a2650c4c8d603738f0b92f04f33367 (patch) | |
tree | 33c0834bfff0c4878c9a31805db02de411de2d23 /includes/profiler/ProfilerXhprof.php | |
parent | 077b84664db0fa866abfd44c03b650e0048a3db8 (diff) | |
download | mediawikicore-8de3b7d324a2650c4c8d603738f0b92f04f33367.tar.gz mediawikicore-8de3b7d324a2650c4c8d603738f0b92f04f33367.zip |
Use static closures where safe to use
This is micro-optimization of closure code to avoid binding the closure
to $this where it is not needed.
Created by I25a17fb22b6b669e817317a0f45051ae9c608208
Change-Id: I0ffc6200f6c6693d78a3151cb8cea7dce7c21653
Diffstat (limited to 'includes/profiler/ProfilerXhprof.php')
-rw-r--r-- | includes/profiler/ProfilerXhprof.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/profiler/ProfilerXhprof.php b/includes/profiler/ProfilerXhprof.php index 41fcc1f699b3..e02512f38daf 100644 --- a/includes/profiler/ProfilerXhprof.php +++ b/includes/profiler/ProfilerXhprof.php @@ -198,7 +198,7 @@ class ProfilerXhprof extends Profiler { */ protected function getFunctionReport() { $data = $this->getFunctionStats(); - usort( $data, function ( $a, $b ) { + usort( $data, static function ( $a, $b ) { return $b['real'] <=> $a['real']; // descending } ); |