]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/database/wrapper/class_UserDatabaseWrapper.php
PrimeraApi improved, some code cosmetics:
[core.git] / inc / classes / main / database / wrapper / class_UserDatabaseWrapper.php
index 9687d4ab6e74e6738e664fe1a9975471fc9893f9..557ab085dfcf104ac3c5b15feb265d019e6d6ae0 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 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -26,21 +26,21 @@ class UserDatabaseWrapper extends BaseDatabaseWrapper implements ManageableAccou
        const EXCEPTION_CLIENT_USERNAME_NOT_FOUND = 0x180;
 
        // Constants for database columns
-       const DB_COLUMN_USERID       = "userid";
-       const DB_COLUMN_USERNAME     = "username";
-       const DB_COLUMN_EMAIL        = "email";
-       const DB_COLUMN_CONFIRM_HASH = "confirm_hash";
-       const DB_COLUMN_USER_STATUS  = "user_status";
+       const DB_COLUMN_USERID       = 'userid';
+       const DB_COLUMN_USERNAME     = 'username';
+       const DB_COLUMN_EMAIL        = 'email';
+       const DB_COLUMN_CONFIRM_HASH = 'confirm_hash';
+       const DB_COLUMN_USER_STATUS  = 'user_status';
 
        // Constants for database table names
-       const DB_TABLE_USER = "user";
+       const DB_TABLE_USER = 'user';
 
        /**
         * Protected constructor
         *
         * @return      void
         */
-       protected function __construct() {
+       protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -50,7 +50,7 @@ class UserDatabaseWrapper extends BaseDatabaseWrapper implements ManageableAccou
         *
         * @return      $wrapperInstance        An instance of the created wrapper class
         */
-       public final static function createUserDatabaseWrapper () {
+       public static final function createUserDatabaseWrapper () {
                // Get a new instance
                $wrapperInstance = new UserDatabaseWrapper();
 
@@ -118,7 +118,7 @@ class UserDatabaseWrapper extends BaseDatabaseWrapper implements ManageableAccou
                        // Is it still null?
                        if (is_null($searchInstance)) {
                                // Throw an exception here
-                               throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
+                               throw new NullPointerException($updateInstance, self::EXCEPTION_IS_NULL_POINTER);
                        } // END - if
                } // END - if