Explicit variable definition, tweak documentation
[lhc/web/wiklou.git] / includes / api / ApiUserrights.php
index 2869976..8b3adf3 100644 (file)
@@ -1,9 +1,10 @@
 <?php
 
 /**
- * Created on Mar 24, 2009
  * API for MediaWiki 1.8+
  *
+ * Created on Mar 24, 2009
+ *
  * Copyright © 2009 Roan Kattouw <Firstname>.<Lastname>@home.nl
  *
  * This program is free software; you can redistribute it and/or modify
@@ -20,6 +21,8 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 
 if ( !defined( 'MEDIAWIKI' ) ) {
@@ -55,6 +58,9 @@ class ApiUserrights extends ApiBase {
                $this->getResult()->addValue( null, $this->getModuleName(), $r );
        }
 
+       /**
+        * @return User
+        */
        private function getUser() {
                if ( $this->mUser !== null ) {
                        return $this->mUser;
@@ -87,7 +93,7 @@ class ApiUserrights extends ApiBase {
                return array (
                        'user' => array(
                                ApiBase::PARAM_TYPE => 'string',
-                               ApiBase::PARAM_REQUIRED => 1
+                               ApiBase::PARAM_REQUIRED => true
                        ),
                        'add' => array(
                                ApiBase::PARAM_TYPE => User::getAllGroups(),
@@ -118,10 +124,8 @@ class ApiUserrights extends ApiBase {
                return 'Add/remove a user to/from groups';
        }
 
-       public function getPossibleErrors() {
-               return array_merge( parent::getPossibleErrors(), array(
-                       array( 'missingparam', 'user' ),
-               ) );
+       public function needsToken() {
+               return true;
        }
 
        public function getTokenSalt() {