API: Improvements to action=emailuser:
[lhc/web/wiklou.git] / includes / api / ApiFormatPhp.php
index 0b0a820..a86fb6e 100644 (file)
@@ -1,12 +1,11 @@
 <?php
 
-
 /*
  * Created on Oct 22, 2006
  *
  * API for MediaWiki 1.8+
  *
- * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
+ * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
  *
  * 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
@@ -29,6 +28,9 @@ if (!defined('MEDIAWIKI')) {
        require_once ('ApiFormatBase.php');
 }
 
+/**
+ * @ingroup API
+ */
 class ApiFormatPhp extends ApiFormatBase {
 
        public function __construct($main, $format) {
@@ -43,12 +45,11 @@ class ApiFormatPhp extends ApiFormatBase {
                $this->printText(serialize($this->getResultData()));
        }
 
-       protected function getDescription() {
-               return 'Output data in serialized PHP format';
+       public function getDescription() {
+               return 'Output data in serialized PHP format' . parent :: getDescription();
        }
 
        public function getVersion() {
                return __CLASS__ . ': $Id$';
        }
 }
-?>
\ No newline at end of file