]> git.mxchange.org Git - city.git/blobdiff - application/city/classes/login/class_CityGuestLogin.php
Continued:
[city.git] / application / city / classes / login / class_CityGuestLogin.php
index 775b8abc65659ac2da75d50345f58be7ffa61483..de877222bcb7df5d2631261b7fdd74bc099ac374 100644 (file)
@@ -18,7 +18,7 @@ use Org\Mxchange\CoreFramework\Response\Responseable;
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2015, 2016 City Developer Team
+ * @copyright  Copyright (c) 2015 - 2023 City Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -86,7 +86,7 @@ class CityGuestLogin extends BaseFrameworkSystem implements LoginableUser, Regis
                if ($userInstance->ifPasswordHashMatches($requestInstance) === FALSE) {
                        // Mismatching password
                        throw new UserPasswordMismatchException(array($this, $userInstance), BaseUser::EXCEPTION_USER_PASS_MISMATCH);
-               } // END - if
+               }
 
                // Now do the real login. This can be cookie- or session-based login
                // which depends on the admins setting then on the user's taste.
@@ -146,6 +146,6 @@ class CityGuestLogin extends BaseFrameworkSystem implements LoginableUser, Regis
 
                        // Store the hash back in request
                        FrameworkBootstrap::getRequestInstance()->setRequestElement('pass_hash', $this->hashedPassword);
-               } // END - if
+               }
        }
 }