wiki.techinc.nl/includes/utils
Tim Starling 44d51cb04e Fix the namespace of SpecialPageFactory
Follows-up d4045035b0.

This class was added to the MediaWiki\Special namespace, contrary to the
plan in T166010 which reserves that namespace for core special pages.
Instead, use MediaWiki\SpecialPage, following the directory in which it
is located.

Also, fix two bugs which prevented the introduction of a namespaced
class alias.

Bug: T166010
Change-Id: I6e31340aaae32a89beb7e45b79d76a7fea9808d2
2020-02-21 13:46:19 +11:00
..
AutoloadGenerator.php
AvroValidator.php Coding style: Auto-fix MediaWiki.Usage.IsNull.IsNull 2020-01-10 14:17:13 -08:00
BatchRowIterator.php Remove duplicate variable name from class property PHPDocs 2019-12-02 12:58:29 +00:00
BatchRowUpdate.php
BatchRowWriter.php Fix doc for BatchRowWriter::$clusterName 2019-12-30 13:34:27 +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
MWFileProps.php
MWRestrictions.php Use namespaced IPUtils class 2020-01-01 02:36:49 -08:00
README
RowUpdateGenerator.php
UIDGenerator.php Move UIDGenerator code to a service and put it under /libs 2020-02-18 00:20:40 +00:00
ZipDirectoryReader.php
ZipDirectoryReaderError.php Set method visibility for various constructors 2019-12-03 20:17:30 +01: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.