aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/Timing.php
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2021-02-10 23:31:02 +0100
committerUmherirrender <umherirrender_de.wp@web.de>2021-02-11 00:13:52 +0000
commit8de3b7d324a2650c4c8d603738f0b92f04f33367 (patch)
tree33c0834bfff0c4878c9a31805db02de411de2d23 /includes/libs/Timing.php
parent077b84664db0fa866abfd44c03b650e0048a3db8 (diff)
downloadmediawikicore-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/libs/Timing.php')
-rw-r--r--includes/libs/Timing.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/libs/Timing.php b/includes/libs/Timing.php
index 5ed7aebc6a7a..2149d33395d1 100644
--- a/includes/libs/Timing.php
+++ b/includes/libs/Timing.php
@@ -153,7 +153,7 @@ class Timing implements LoggerAwareInterface {
* Sort entries in chronological order with respect to startTime.
*/
private function sortEntries() {
- uasort( $this->entries, function ( $a, $b ) {
+ uasort( $this->entries, static function ( $a, $b ) {
return $a['startTime'] <=> $b['startTime'];
} );
}