MediaWiki master
WebInstallerReleaseNotes.php
Go to the documentation of this file.
1<?php
2
9namespace MediaWiki\Installer;
10
11use LogicException;
12
14
18 protected function getFileName() {
19 if ( !preg_match( '/^(\d+)\.(\d+).*/i', MW_VERSION, $result ) ) {
20 throw new LogicException( 'Constant MW_VERSION has an invalid value.' );
21 }
22
23 return 'RELEASE-NOTES-' . $result[1] . '.' . $result[2];
24 }
25
26}
const MW_VERSION
The running version of MediaWiki.
Definition Defines.php:23