MediaWiki REL1_31
DevelopmentSettings.php
Go to the documentation of this file.
1<?php
20// Enable showing of errors
21error_reporting( -1 );
22ini_set( 'display_errors', 1 );
23
30
31// Use of wfWarn() should cause tests to fail
33
34// Enable showing of errors
37$wgShowSQLErrors = true;
38$wgDebugRawPage = true; // T49960
39
40// Enable log files
41$logDir = getenv( 'MW_LOG_DIR' );
42if ( $logDir ) {
43 if ( $wgCommandLineMode ) {
44 $wgDebugLogFile = "$logDir/mw-debug-cli.log";
45 } else {
46 $wgDebugLogFile = "$logDir/mw-debug-www.log";
47 }
48 $wgDBerrorLog = "$logDir/mw-dberror.log";
49 $wgDebugLogGroups['ratelimit'] = "$logDir/mw-ratelimit.log";
50 $wgDebugLogGroups['exception'] = "$logDir/mw-exception.log";
51 $wgDebugLogGroups['error'] = "$logDir/mw-error.log";
52}
53unset( $logDir );
54
60
61// Disable rate-limiting to allow integration tests to run unthrottled
62// in CI and for devs locally (T225796)
63$wgRateLimits = [];
64
65// Enable Special:JavaScriptTest and allow `npm run qunit` to work
66// https://www.mediawiki.org/wiki/Manual:JavaScript_unit_testing
68
75
76// Enable MariaDB/MySQL strict mode (T108255)
77$wgSQLMode = 'TRADITIONAL';
78
79// Disable legacy javascript globals in CI and for devs (T72470)
global $wgSQLMode
Experimental changes that may later become the default.
global $wgEnableJavaScriptTest
global $wgDebugLogGroups
global $wgDebugLogFile
global $wgCommandLineMode
global $wgLegacyJavaScriptGlobals
global $wgDBerrorLog
global $wgShowExceptionDetails
global $wgDebugRawPage
global $wgShowDBErrorBacktrace
global $wgDevelopmentWarnings
Debugging: MediaWiki.
global $wgRateLimits
Make testing possible (or easier)
global $wgShowSQLErrors
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37