Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / user / extended / class_ShipSimuGuest.php
index 1f7ec5505faac9c659d9fb65011258d89314a6fc..30efa0d43043edd041a4a171b19f52b0f163f52c 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -40,7 +40,7 @@ class ShipSimuGuest extends ShipSimuBaseUser implements ManageableGuest {
 
        /**
         * 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
@@ -54,7 +54,7 @@ class ShipSimuGuest extends ShipSimuBaseUser implements ManageableGuest {
                // 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);
@@ -66,7 +66,7 @@ class ShipSimuGuest extends ShipSimuBaseUser implements ManageableGuest {
 
        /**
         * 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