X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fuser%2Fclass_BaseUser.php;h=74d5c8a4171d576ee1c2ce4dc6aee004bc6de937;hb=f2e5c734f1b1397a95d517094152da14b136b5a1;hp=1cb55b42e1f884f725925db749d5c3ba85d8a192;hpb=84e2207412d3c6ea9f940a83b2cdd4503509808a;p=core.git diff --git a/inc/classes/main/user/class_BaseUser.php b/inc/classes/main/user/class_BaseUser.php index 1cb55b42..74d5c8a4 100644 --- a/inc/classes/main/user/class_BaseUser.php +++ b/inc/classes/main/user/class_BaseUser.php @@ -2,11 +2,11 @@ /** * A general user class * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 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 @@ -112,13 +112,13 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { } /** - * 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 */ public function ifUsernameExists () { // By default the username does not exist - $exists = false; + $exists = FALSE; // Is a previous result there? if (is_null($this->getResultInstance())) { @@ -148,7 +148,7 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { // Search for it if ($this->getResultInstance()->next()) { // Entry found - $exists = true; + $exists = TRUE; } // END - if // Return the status @@ -156,13 +156,13 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { } /** - * 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 */ public function ifEmailAddressExists () { // By default the email does not exist - $exists = false; + $exists = FALSE; // Is a previous result there? if (is_null($this->getResultInstance())) { @@ -192,7 +192,7 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { // Search for it if ($this->getResultInstance()->next()) { // Entry found - $exists = true; + $exists = TRUE; // Is the username set? if ($this->getUserName() == '') { @@ -213,11 +213,11 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { * database. * * @param $requestInstance A requestable class instance - * @return $matches Wether the supplied password hash matches + * @return $matches Whether the supplied password hash matches */ public function ifPasswordHashMatches (Requestable $requestInstance) { // By default nothing matches... ;) - $matches = false; + $matches = FALSE; // Is a previous result there? if (is_null($this->getResultInstance())) { @@ -265,7 +265,7 @@ class BaseUser extends BaseFrameworkSystem implements Updateable { */ public final function getPasswordHash () { // Default is missing password hash - $passHash = null; + $passHash = NULL; // Get a database entry $entry = $this->getDatabaseEntry();