]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/user/class_ManageableAccount.php
Added new interfaces Handleable/-DataSet and ProtocolHandler (no content yet).
[core.git] / inc / classes / interfaces / user / class_ManageableAccount.php
index 2dd07067be760c533a928f945b95cec21a880295..3c270261d0ffde65b5c5a8ba122b9a9e0137f351 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for manageable accounts (logged-in users and guests likewise)
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * 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
  */
 interface ManageableAccount extends FrameworkInterface {
        /**
-        * Determines wether the username exists or not
+        * Determines whether the username exists or not
         *
-        * @return      $exists         Wether the username exists
+        * @return      $exists         Whether the username exists
         */
        function ifUsernameExists ();
 
        /**
-        * Determines wether the email exists or not
+        * Determines whether the email exists or not
         *
-        * @return      $exists         Wether the email exists
+        * @return      $exists         Whether the email exists
         */
        function ifEmailAddressExists ();
 
@@ -41,10 +41,10 @@ interface ManageableAccount extends FrameworkInterface {
         * database.
         *
         * @param       $requestInstance        A requestable class instance
-        * @return      $matches                        Wether the supplied password hash matches
+        * @return      $matches                        Whether the supplied password hash matches
         */
        function ifPasswordHashMatches (Requestable $requestInstance);
 }
 
-//
+// [EOF]
 ?>