Output more MW version info in update.php
[lhc/web/wiklou.git] / includes / MediaWikiVersionFetcher.php
index c3fb486..913ae9a 100644 (file)
@@ -4,7 +4,6 @@
  * Provides access to MediaWiki's version without requiring MediaWiki (or anything else)
  * being loaded first.
  *
- * @licence GNU GPL v2+
  * @author Jeroen De Dauw < jeroendedauw@gmail.com >
  */
 class MediaWikiVersionFetcher {
@@ -18,7 +17,7 @@ class MediaWikiVersionFetcher {
        public function fetchVersion() {
                $defaultSettings = file_get_contents( __DIR__ . '/DefaultSettings.php' );
 
-               $matches = array();
+               $matches = [];
                preg_match( "/wgVersion = '([0-9a-zA-Z\.\-]+)';/", $defaultSettings, $matches );
 
                if ( count( $matches ) !== 2 ) {