* Added new doxygen group "ExternalUser"
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 10 Jan 2010 21:39:47 +0000 (21:39 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 10 Jan 2010 21:39:47 +0000 (21:39 +0000)
* Fixed some doxygen warnings

includes/ExternalUser.php
includes/extauth/Hardcoded.php
includes/extauth/MediaWiki.php
includes/extauth/vB.php

index e89c205..65dae61 100644 (file)
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 # http://www.gnu.org/copyleft/gpl.html
 
+/**
+ * @defgroup ExternalUser ExternalUser
+ */
+
 /**
  * A class intended to supplement, and perhaps eventually replace, AuthPlugin.
  * See: http://www.mediawiki.org/wiki/ExternalAuth
@@ -26,6 +30,8 @@
  * assumed to at least support the concept of a user id (possibly not an
  * integer), a user name (possibly not meeting MediaWiki's username
  * requirements), and a password.
+ *
+ * @ingroup ExternalUser
  */
 abstract class ExternalUser {
        protected function __construct() {}
@@ -67,7 +73,6 @@ abstract class ExternalUser {
        }
 
        /**
-        * @param $cookie string
         * @return mixed ExternalUser, or false on failure
         */
        public static function newFromCookie() {
index 7330aa1..a9a60be 100644 (file)
@@ -31,6 +31,8 @@
  *
  * Multiple names may be provided.  The keys of the inner arrays can be either
  * 'password', or the name of any preference.
+ *
+ * @ingroup ExternalUser
  */
 class ExternalUser_Hardcoded extends ExternalUser {
        private $mName;
index 4b4553b..7d6a3c7 100644 (file)
@@ -41,6 +41,8 @@
  * might fail unexpectedly unless they both do the exact same validation.  
  * There may be other corner cases like this where this will fail, but it 
  * should be unlikely.
+ *
+ * @ingroup ExternalUser
  */
 class ExternalUser_MediaWiki extends ExternalUser {
        private $mRow, $mDb;
index 39cd2a2..2352366 100644 (file)
@@ -32,6 +32,8 @@
  *       'tableprefix' => '',
  *       'cookieprefix' => 'bb'
  *   );
+ *
+ * @ingroup ExternalUser
  */
 class ExternalUser_vB extends ExternalUser {
        private $mDb, $mRow;