X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Finterfaces%2Fuser%2Fclass_ManageableAccount.php;h=3c270261d0ffde65b5c5a8ba122b9a9e0137f351;hb=1ee35e6d96c456b8e3499bd683f1647aa28bd501;hp=2dd07067be760c533a928f945b95cec21a880295;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308;p=core.git diff --git a/inc/classes/interfaces/user/class_ManageableAccount.php b/inc/classes/interfaces/user/class_ManageableAccount.php index 2dd07067..3c270261 100644 --- a/inc/classes/interfaces/user/class_ManageableAccount.php +++ b/inc/classes/interfaces/user/class_ManageableAccount.php @@ -2,11 +2,11 @@ /** * An interface for manageable accounts (logged-in users and guests likewise) * - * @author Roland Haeder + * @author Roland Haeder * @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 @@ -23,16 +23,16 @@ */ 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] ?>