Special:Userrights didn't recognize user as self if person didn't capitalize
[lhc/web/wiklou.git] / includes / api / ApiFormatTxt.php
index 52bdf8e..c829303 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 
-/*
+/**
  * Created on Oct 22, 2006
  *
  * API for MediaWiki 1.8+
  *
- * Copyright (C) 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl
+ * Copyright © 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 if ( !defined( 'MEDIAWIKI' ) ) {
        // Eclipse helper - will be ignored in production
-       require_once ( 'ApiFormatBase.php' );
+       require_once( 'ApiFormatBase.php' );
 }
 
 /**
+ * API Text output formatter
  * @ingroup API
  */
 class ApiFormatTxt extends ApiFormatBase {
 
        public function __construct( $main, $format ) {
-               parent :: __construct( $main, $format );
+               parent::__construct( $main, $format );
        }
 
        public function getMimeType() {
-               # This looks like it should be text/plain, but IE7 is so
-               # brain-damaged it tries to parse text/plain as HTML if it
-               # contains HTML tags. Using MIME text/text works around this bug
+               // This looks like it should be text/plain, but IE7 is so
+               // brain-damaged it tries to parse text/plain as HTML if it
+               // contains HTML tags. Using MIME text/text works around this bug
                return 'text/text';
        }
 
@@ -49,7 +50,7 @@ class ApiFormatTxt extends ApiFormatBase {
        }
 
        public function getDescription() {
-               return 'Output data in PHP\'s print_r() format' . parent :: getDescription();
+               return 'Output data in PHP\'s print_r() format' . parent::getDescription();
        }
 
        public function getVersion() {