X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Flogin%2Fclass_ShipSimuGuestLogin.php;h=d4b0365c4d58e40b7dcb986c81bb76cde983d2a4;hp=7336865d406b767c48adaab4dfd8f26ee2c26f9c;hb=5bf79580029c4f6ee71e6c9e7890169e4b344def;hpb=fc50e3805a154eca3330aeae911cd6b75c967e9f diff --git a/application/ship-simu/main/login/class_ShipSimuGuestLogin.php b/application/ship-simu/main/login/class_ShipSimuGuestLogin.php index 7336865..d4b0365 100644 --- a/application/ship-simu/main/login/class_ShipSimuGuestLogin.php +++ b/application/ship-simu/main/login/class_ShipSimuGuestLogin.php @@ -118,7 +118,7 @@ class ShipSimuGuestLogin extends BaseFrameworkSystem implements LoginableUser { } /** - * Determines wether the login was fine. This is done by checking if the 'login' instance is in registry + * Determines wether the login was fine. This is done by checking if 'login' instance is in registry * * @return $loginDone Wether the login was fine or not */ @@ -131,14 +131,14 @@ class ShipSimuGuestLogin extends BaseFrameworkSystem implements LoginableUser { } /** - * Encrypt the given request key or throw an exception if the key was not - * found in the request + * Encrypt given request key or throw an exception if key was not found in + * request * * @param $requestKey Key in request class * @return void */ public function encryptPassword ($requestKey) { - // Check if the password is found in the request + // Check if password is found in request if ($this->getRequestInstance()->isRequestElementSet($requestKey)) { // So encrypt the password and store it for later usage in // the request: @@ -152,7 +152,7 @@ class ShipSimuGuestLogin extends BaseFrameworkSystem implements LoginableUser { // Get a crypto helper and hash the password $this->hashedPassword = ObjectFactory::createObjectByConfiguredName('crypto_class')->hashString($plainPassword, $userInstance->getPasswordHash()); - // Store the hash back in the request + // Store the hash back in request $this->getRequestInstance()->setRequestElement('pass_hash', $this->hashedPassword); } // END - if }