X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fuser%2Fextended%2Fclass_ShipSimuMember.php;h=98e7a2a5976168cd04757126bd56e8386a8a3f0f;hb=5bf79580029c4f6ee71e6c9e7890169e4b344def;hp=46fb2ed7bfa5d790ee37eab70b054e33eb926446;hpb=fc50e3805a154eca3330aeae911cd6b75c967e9f;p=shipsimu.git diff --git a/application/ship-simu/main/user/extended/class_ShipSimuMember.php b/application/ship-simu/main/user/extended/class_ShipSimuMember.php index 46fb2ed..98e7a2a 100644 --- a/application/ship-simu/main/user/extended/class_ShipSimuMember.php +++ b/application/ship-simu/main/user/extended/class_ShipSimuMember.php @@ -48,7 +48,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember { /** * Creates an instance of this user class by a provided username. This - * factory method will check if the username is already taken and if not + * factory method will check if username is already taken and if not * so it will throw an exception. * * @param $userName Username we need a class instance for @@ -62,7 +62,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember { // Set the username $userInstance->setUserName($userName); - // Check if the username exists + // Check if username exists if ($userInstance->ifUsernameExists() === false) { // Throw an exception here throw new UsernameMissingException(array($userInstance, $userName), self::EXCEPTION_USERNAME_NOT_FOUND); @@ -74,7 +74,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember { /** * Creates an instance of this user class by a provided email address. This - * factory method will not check if the email address is there. + * factory method will not check if email address is there. * * @param $email Email address of the user * @return $userInstance An instance of this user class