wiki.techinc.nl/includes/utils
Umherirrender 8de3b7d324 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
2021-02-11 00:13:52 +00:00
..
AutoloadGenerator.php Safer autoloading with respect to file-scope code 2021-01-11 11:59:36 +11:00
AvroValidator.php Coding style: Auto-fix MediaWiki.Usage.IsNull.IsNull 2020-01-10 14:17:13 -08:00
BatchRowIterator.php Improve class property documentation 2020-10-30 10:38:58 +01:00
BatchRowUpdate.php Use static closures where safe to use 2021-02-11 00:13:52 +00:00
BatchRowWriter.php Improve class property documentation 2020-10-30 10:38:58 +01:00
ClassCollector.php Fix the namespace of SpecialPageFactory 2020-02-21 13:46:19 +11:00
ExecutableFinder.php
FileContentsHasher.php resourceloader: Use FileContentsHasher batching in FileModule::getFileHashes 2019-12-17 11:56:22 +00:00
MWCryptHKDF.php
MWCryptRand.php Remove CryptRand and related stuff 2019-04-11 18:20:09 +01:00
MWFileProps.php Document and fix UploadBase::$mFinalExtension being null 2021-02-03 19:12:07 +01:00
MWRestrictions.php Use IPset in MWRestrictions::checkIP 2020-08-18 12:08:13 +01:00
README
RowUpdateGenerator.php Replace "@stable for implementation" with "@stable to implement" 2020-07-13 11:05:49 +02:00
UIDGenerator.php Fix even more PSR12.Properties.ConstantVisibility.NotFound 2020-05-16 00:51:46 +01:00
ZipDirectoryReader.php build: Updating mediawiki/mediawiki-phan-config to 0.10.5 2020-12-12 14:42:25 +01:00
ZipDirectoryReaderError.php Replace "@stable for calling" by "@stable to call" 2020-07-13 08:55:28 +00:00

The classes in this directory are general utilities for use by any part of
MediaWiki. They do not favour any particular user interface and are not
constrained to serve any particular feature. This is similar to includes/libs,
except that some dependency on the MediaWiki framework (such as the use of
MWException, Status or wfDebug()) disqualifies them from use outside of
MediaWiki without modification.

Utilities should not use global configuration variables, rather they should rely
on the caller to configure their behaviour.