Use the class name with capital letter
authorPlatonides <platonides@gmail.com>
Sat, 23 Nov 2013 17:41:59 +0000 (18:41 +0100)
committerSiebrand <siebrand@wikimedia.org>
Sat, 23 Nov 2013 18:02:40 +0000 (18:02 +0000)
Change-Id: I97577cb085a47d58fd3de96ab77da68ebe482d6a

maintenance/language/StatOutputs.php

index 4e845f1..f9390f6 100644 (file)
@@ -50,7 +50,7 @@ class StatsOutput {
 }
 
 /** Outputs WikiText */
-class WikiStatsOutput extends statsOutput {
+class WikiStatsOutput extends StatsOutput {
        function heading() {
                global $wgDummyLanguageCodes;
                $version = SpecialVersion::getVersion( 'nodb' );
@@ -123,7 +123,7 @@ class WikiStatsOutput extends statsOutput {
 }
 
 /** Output text. To be used on a terminal for example. */
-class TextStatsOutput extends statsOutput {
+class TextStatsOutput extends StatsOutput {
        function element( $in, $heading = false ) {
                echo $in . "\t";
        }
@@ -134,7 +134,7 @@ class TextStatsOutput extends statsOutput {
 }
 
 /** csv output. Some people love excel */
-class CsvStatsOutput extends statsOutput {
+class CsvStatsOutput extends StatsOutput {
        function element( $in, $heading = false ) {
                echo $in . ";";
        }