aboutsummaryrefslogtreecommitdiffstats
path: root/includes/specials/helpers
diff options
context:
space:
mode:
authorUmherirrender <umherirrender_de.wp@web.de>2024-10-16 20:58:33 +0200
committerUmherirrender <umherirrender_de.wp@web.de>2024-10-16 20:58:33 +0200
commite662614f95228614e575f6148678c35cdbc19f58 (patch)
treeb6786bcf09229a221b2dc086c6806350012df13d /includes/specials/helpers
parent544a959d5b8fe05bdb056e72279da118a1243ca8 (diff)
downloadmediawikicore-e662614f95228614e575f6148678c35cdbc19f58.tar.gz
mediawikicore-e662614f95228614e575f6148678c35cdbc19f58.zip
Use explicit nullable type on parameter arguments
Implicitly marking parameter $... as nullable is deprecated in php8.4, the explicit nullable type must be used instead Created with autofix from Ide15839e98a6229c22584d1c1c88c690982e1d7a Break one long line in SpecialPage.php Bug: T376276 Change-Id: I807257b2ba1ab2744ab74d9572c9c3d3ac2a968e
Diffstat (limited to 'includes/specials/helpers')
-rw-r--r--includes/specials/helpers/ImportReporter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/specials/helpers/ImportReporter.php b/includes/specials/helpers/ImportReporter.php
index 3a6590d7ae49..7f89c6f74006 100644
--- a/includes/specials/helpers/ImportReporter.php
+++ b/includes/specials/helpers/ImportReporter.php
@@ -60,7 +60,7 @@ class ImportReporter extends ContextSource {
* @param string|bool $reason
* @param IContextSource|null $context
*/
- public function __construct( $importer, $upload, $interwiki, $reason = "", IContextSource $context = null ) {
+ public function __construct( $importer, $upload, $interwiki, $reason = "", ?IContextSource $context = null ) {
if ( $context ) {
$this->setContext( $context );
} else {