]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/user/class_ManageableAccount.php
Added optional $requestInstance parameter
[core.git] / inc / classes / interfaces / user / class_ManageableAccount.php
index 9e775641f46448def52ca1ad99654bbfead9b2b8..a042037e744a09b0ec33b8995937a4e9ae95fa9c 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
  */
 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]
 ?>