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/libs/ArrayUtils.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/libs/ArrayUtils.php')
-rw-r--r-- | includes/libs/ArrayUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/libs/ArrayUtils.php b/includes/libs/ArrayUtils.php index 5c1fbe1d2db0..292e343683bb 100644 --- a/includes/libs/ArrayUtils.php +++ b/includes/libs/ArrayUtils.php @@ -51,7 +51,7 @@ class ArrayUtils { foreach ( $array as $elt ) { $hashes[$elt] = md5( $elt . $separator . $key ); } - uasort( $array, function ( $a, $b ) use ( $hashes ) { + uasort( $array, static function ( $a, $b ) use ( $hashes ) { return strcmp( $hashes[$a], $hashes[$b] ); } ); } |